Current Path : /storage/v11800/testhospital/

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/testhospital/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: testhospitaldb
-- ------------------------------------------------------
-- 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-05-29 08:51:33','2023-05-29 08:51:33','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-05-29T14:33:01.615-06:30\"}','2023-05-29 14:33:01');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_submissions`
--

DROP TABLE IF EXISTS `wp_e_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_submissions`
--

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

--
-- Table structure for table `wp_e_submissions_actions_log`
--

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

--
-- Dumping data for table `wp_e_submissions_actions_log`
--

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

--
-- Table structure for table `wp_e_submissions_values`
--

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

--
-- Dumping data for table `wp_e_submissions_values`
--

LOCK TABLES `wp_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_submissions_values` 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=609 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://testhospital.in8.cdn-alpha.com','yes'),(2,'home','https://testhospital.in8.cdn-alpha.com','yes'),(3,'blogname','NMH - Heart &amp; Multispeciality','yes'),(4,'blogdescription','The Power to Heal','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','','yes'),(29,'rewrite_rules','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{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:31:\"elementor-pro/elementor-pro.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:37:\"elementskit-lite/elementskit-lite.php\";i:5;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:6;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','0','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','53496','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','206','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','256','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','1700902292','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:12:{i:1685350293;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:1685350402;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:1685350404;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:1685350462;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:1685350976;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:1685363751;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1a89a2a2129300c1da6763ba0380ed1f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:56;}}}}i:1685363757;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"2937749bdb63b97e582698a4b62671c0\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:57;}}}}i:1685436693;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:1685436803;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:1688190711;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;}}}i:1691612960;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','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','1719175717.8342370986938476562500','yes'),(128,'ai1wm_secret_key','dWVFxzfiwisY','yes'),(129,'wp_cli_login','{\"endpoint\":\"65c78e0e\",\"version\":\"^1.2\"}','yes'),(133,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(134,'_site_transient_timeout_browser_aac86fc596937055692c4af5811813bd','1685955203','no'),(135,'_site_transient_browser_aac86fc596937055692c4af5811813bd','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"112.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'),(136,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1685955204','no'),(137,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(138,'can_compress_scripts','0','no'),(139,'_site_transient_timeout_community-events-fd64755a91a061a2a64ab64aaef4fff0','1685393607','no'),(140,'_site_transient_community-events-fd64755a91a061a2a64ab64aaef4fff0','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"162.158.235.0\";}s:6:\"events\";a:0:{}}','no'),(151,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1685361600','no'),(152,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6104;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4821;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2786;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2674;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2054;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1917;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1908;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1643;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1567;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1555;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1549;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1515;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1507;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1486;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1368;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1272;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1175;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1155;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1148;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1056;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1023;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1002;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:966;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:903;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:895;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:881;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:880;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:877;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:872;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:867;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:833;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:796;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:795;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:781;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:778;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:771;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:766;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:740;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:733;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:731;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:729;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:724;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:689;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:685;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:685;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:675;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:666;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:623;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:617;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:611;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:608;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:608;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:601;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:594;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:592;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:589;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:578;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:570;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:570;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:568;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:567;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:556;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:555;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:542;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:540;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:533;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:531;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:529;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:527;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:519;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:512;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:510;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:508;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:506;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:486;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:477;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:475;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:466;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:449;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:448;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:437;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:432;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:425;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:424;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:423;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:421;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:421;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:420;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:418;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:412;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:407;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:398;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:396;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:395;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:391;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}}','no'),(156,'_site_transient_ai1wm_last_check_for_updates','1685433487','no'),(157,'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.51\";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'),(158,'hfe_plugin_is_activated','yes','yes'),(159,'recently_activated','a:0:{}','yes'),(160,'elementor_active_kit','84','yes'),(161,'elementor_font_display','swap','yes'),(164,'elementor_version','3.13.4','yes'),(165,'elementor_install_history','a:1:{s:6:\"3.13.4\";i:1685356585;}','yes'),(166,'elementor_events_db_version','1.0.0','no'),(167,'_hfe_db_version','1.6.24','yes'),(168,'elementor_onboarded','1','yes'),(169,'bsf_analytics_installed_time','1685350992','no'),(170,'_elementor_installed_time','1685350992','yes'),(171,'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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;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:706;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;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:707;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;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:708;a:18:{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: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:709;a:18:{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: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:710;a:18:{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: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:711;a:18:{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: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:712;a:18:{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: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:713;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;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:751;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;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:752;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;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:753;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;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:754;a:18:{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: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:755;a:18:{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: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:756;a:18:{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: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:757;a:18:{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: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:758;a:18:{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: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:759;a:18:{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: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:760;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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'),(172,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:70:\"Introducing Elementor AI – Revolutionize the Way You Create Websites\";s:7:\"excerpt\";s:232:\"Elementor includes a new natively integrated AI product, available as a free trial starting in Elementor 3.13. Benefit from a wide array of use cases available from directly within the Editor to transform the way you build websites.\";s:7:\"created\";i:1682945240;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:124:\"https://elementor.com/blog/introducing-elementor-ai/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.12 – Design Beautiful and Sophisticated Mega Menus\";s:7:\"excerpt\";s:245:\"Elementor 3.12 includes a number of eagerly awaited features that will take your website’s design and navigation to the next level. This version also reveals the first phase of the Elementor interface revamp, and expands existing capabilities.\";s:7:\"created\";i:1680605140;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:146:\"https://elementor.com/blog/new-mega-menu-loop-alternate-template-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:135:\"Introducing Elementor 3.11 - Introducing Elementor 3.11 – New Loop Carousel Widget to Customize the Display of Your Posts or Products\";s:7:\"excerpt\";s:176:\"Elementor 3.11 includes new features that will expand your ability to customize the design and display of your listings, improve your workflow, and your visitor’s experience.\";s:7:\"created\";i:1677155418;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:154:\"https://elementor.com/blog/new-loop-carousel-copy-paste-between-websites-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(177,'template_kit_import_version','1.0.14','yes'),(178,'template_kit_import_install_time','1685351172','yes'),(179,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1685356086;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'),(184,'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'),(185,'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'),(186,'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'),(192,'elementor_log','a:2:{s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"907878\";s:7:\"\0*\0file\";s:102:\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.4\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-05-29 09:28:58\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-29 09:28:58\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1685352538\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:102:\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.4\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"907878\";}}s:32:\"f809c951a33fc7f89c08c3527e1ea7f7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-07-01 05:51:41\";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.13.4\";s:2:\"to\";s:6:\"3.14.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-07-01 05:51:41\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.4\";s:2:\"to\";s:6:\"3.14.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(193,'_elementor_settings_update_time','1685352666','yes'),(194,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(195,'elementor_disable_color_schemes','yes','yes'),(196,'elementor_disable_typography_schemes','yes','yes'),(197,'elementor_allow_tracking','no','yes'),(198,'elementor_google_maps_api_key','','yes'),(199,'elementor_css_print_method','external','yes'),(200,'elementor_editor_break_lines','','yes'),(201,'elementor_unfiltered_files_upload','','yes'),(202,'elementor_google_font','1','yes'),(203,'elementor_load_fa4_shim','','yes'),(204,'elementor_meta_generator_tag','','yes'),(205,'elementor_experiment-e_font_icon_svg','default','yes'),(206,'elementor_experiment-container','default','yes'),(207,'elementor_experiment-container_grid','default','yes'),(208,'elementor_experiment-editor_v2','default','yes'),(209,'elementor_experiment-nested-elements','default','yes'),(210,'elementor_experiment-e_lazyload','default','yes'),(211,'elementor_experiment-e_dom_optimization','default','yes'),(212,'elementor_experiment-e_optimized_assets_loading','default','yes'),(213,'elementor_experiment-e_optimized_css_loading','default','yes'),(214,'elementor_experiment-a11y_improvements','default','yes'),(215,'elementor_experiment-additional_custom_breakpoints','default','yes'),(216,'elementor_experiment-e_swiper_latest','default','yes'),(217,'elementor_experiment-landing-pages','default','yes'),(223,'elementskit-lite__banner_last_check','1685598587','yes'),(224,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{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\";}}s:8:\"10007137\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007137;s:5:\"title\";s:31:\"Wpmet Summer Campaign Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";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\";}}s:8:\"10007133\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007133;s:5:\"title\";s:17:\"Wpmet Summer Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:19:\"plugin_install_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:36:\"https://wpmet.com/banner/summer-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Banner.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:20:\"summercampaignbanner\";}}s:8:\"10007086\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007086;s:5:\"title\";s:27:\"NPS/Buyer Persona Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1646179200;s:3:\"end\";i:1646956800;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:225:\"Share your experience with Wpmet — take part in a 2-minute survey to win exclusive <strong>discounts, gift cards, and more surprises!</strong>\r\n\r\n<a href=\"https://wpmet.com/we-need-your-feedback/\">Participate to Win →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/03/InPlugin-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:9:\"npsbanner\";}}}','yes'),(225,'elementskit-lite_install_date','2023-05-29 09:32:38','yes'),(232,'current_theme','Hello Elementor','yes'),(233,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:196;}','yes'),(234,'theme_switched','','yes'),(235,'hello_theme_version','2.7.1','yes'),(236,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1718657886;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.7.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.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}}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'),(243,'elementor_pro_version','3.13.2','yes'),(244,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(245,'_elementor_pro_installed_time','1685356585','yes'),(246,'elementor_submissions_db_version','5','yes'),(247,'elementor_connect_site_key','799a9760e82c0310509daeebc64a9007','yes'),(248,'elementor_fonts_manager_font_types','a:0:{}','yes'),(249,'elementor_fonts_manager_fonts','a:0:{}','yes'),(254,'elementor_custom_icon_sets_config','a:0:{}','yes'),(255,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(258,'_transient_timeout_header-footer-elementor-rating','1686659250','no'),(259,'_transient_header-footer-elementor-rating','delayed-notice','no'),(262,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1685433488;}','yes'),(263,'elementor_pro_remote_info_api_data_3.13.2','a:2:{s:7:\"timeout\";i:1685476689;s:5:\"value\";s:192553:\"{\"stable_version\":\"3.13.2\",\"last_updated\":\"2022-05-10 14:03:37\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:180456:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-07<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553<\\/a>))<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes characher is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629]\\\">#18629<\\/a><\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.13.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.2.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.2.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),(266,'elementskit-lite__stories_last_check','1685598586','yes'),(267,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010409\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010409;s:5:\"title\";s:25:\"GetGenie Summer Sale 2023\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1685491200;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:26:\"https://getgenie.ai/summer\";s:11:\"story_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/05/Story-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010405\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010405;s:5:\"title\";s:64:\"Ai is the Future in Content Marketing – How Should You Benefit\";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/ai-is-the-future-in-content-marketing/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010404\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010404;s:5:\"title\";s:39:\"Will Ai Write Books In The Near Future?\";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:59:\"https://getgenie.ai/will-ai-write-books-in-the-near-future/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010403\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010403;s:5:\"title\";s:51:\"How to Empower Email Marketing with AI Effortlessly\";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:52:\"https://getgenie.ai/empower-email-marketing-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:\"10010402\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010402;s:5:\"title\";s:41:\"Best SEO Tools for WordPress You Must Try\";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:60:\"https://wpmet.com/best-seo-tools-for-wordpress-you-must-try/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010401\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010401;s:5:\"title\";s:49:\"WordPress Turns 20: Unlocking The #WP20 Milestone\";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:37:\"https://wpmet.com/wordpress-turns-20/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010400\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010400;s:5:\"title\";s:45:\"8 Affordable HR Software for Startups in 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: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:48:\"https://wpmet.com/best-hr-software-for-startups/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010398\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010398;s:5:\"title\";s:59:\"SEO with AI – Beginning of a New Era of Organic Marketing\";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:54:\"https://getgenie.ai/seo-with-ai-for-organic-marketing/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010397\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010397;s:5:\"title\";s:57:\"10 Challenges and Limitations of Ai Content Writing Tools\";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:75:\"https://getgenie.ai/challenges-and-limitations-of-ai-content-writing-tools/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010396\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010396;s:5:\"title\";s:72:\"What Writing Tools can Work Best for You to Boost Your Sales and Revenue\";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/what-writing-tools-work-best-for-you/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(270,'_site_transient_timeout_community-events-a87ff77ab4fbc6c486f86ac05efe0435','1685641792','no'),(271,'_site_transient_community-events-a87ff77ab4fbc6c486f86ac05efe0435','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.71.198.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"Mumbai Casual WordPress Meetup\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressmumbai/events/293835225\";s:6:\"meetup\";s:23:\"Mumbai WordPress Meetup\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/wordpressmumbai/\";s:4:\"date\";s:19:\"2023-06-18 11:30:00\";s:8:\"end_date\";s:19:\"2023-06-18 13:00:00\";s:20:\"start_unix_timestamp\";i:1687068000;s:18:\"end_unix_timestamp\";i:1687073400;s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Mumbai, India\";s:7:\"country\";s:2:\"in\";s:8:\"latitude\";d:19.063359999999999;s:9:\"longitude\";d:72.861778000000001;}}}}','no'),(284,'_transient_timeout_elementor_remote_templates_data_3.13.4','1685478994','no');
INSERT INTO `wp_options` VALUES (285,'_transient_elementor_remote_templates_data_3.13.4','a:823:{i:0;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;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:706;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;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:707;a:18:{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:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;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:708;a:18:{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: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:709;a:18:{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: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:710;a:18:{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: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:711;a:18:{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: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:712;a:18:{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: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:713;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;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:751;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;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:752;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;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:753;a:18:{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:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;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:754;a:18:{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: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:755;a:18:{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: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:756;a:18:{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: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:757;a:18:{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: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:758;a:18:{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: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:759;a:18:{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: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:760;a:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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:18:{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: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'),(286,'_elementor_pro_editor_activate_license_notice_dismissed','1685451700','yes'),(301,'_site_transient_timeout_wp_remote_block_patterns_2606d8fd6f076a2bc61be42cd17fab98','1685451786','no'),(302,'_site_transient_wp_remote_block_patterns_2606d8fd6f076a2bc61be42cd17fab98','a:47:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:310547;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Poster on Left, Paragraph on Right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3610:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-duotone-rgb137750-rgb210210210-4 wp-block-cover is-light has-custom-content-position is-position-top-right wp-container-content-2\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-vertical is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-group wp-container-content-6 is-vertical is-nowrap is-layout-flex wp-container-7 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n</div>\n\n\n\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:6343:\"<!-- wp:cover {\"customOverlayColor\":\"#36220c\",\"contentPosition\":\"top center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"3vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"stretch\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"url\":\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\",\"id\":334,\"dimRatio\":50,\"minHeight\":75,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top right\",\"isDark\":false,\"style\":{\"layout\":{\"selfStretch\":\"fill\"},\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}},\"color\":{\"duotone\":[\"rgb(137, 75, 0)\",\"rgb(210, 210, 210)\"]}}} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"130px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#d09c9c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.8\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"420px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#e59937\"},\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"32px\",\"bottom\":\"16px\",\"left\":\"32px\"}},\"typography\":{\"fontSize\":\"16px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"7.5vw\"} -->\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1278:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-11 is-layout-constrained wp-container-12 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-duotone-000000-ffffff-10 wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1031:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-14 is-vertical is-nowrap is-layout-flex wp-container-15 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1724:\"\n<div class=\"wp-duotone-36345d-abaaaa-19 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-17 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2130:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-26 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-22 is-layout-flow wp-container-23 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-20\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-24 is-layout-flow wp-container-25 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1893:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-33 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-28 is-layout-flow wp-container-29 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-52dc92f2ee4b8dfde042239a7e68e30d\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-31 is-layout-flow wp-container-32 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-30 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-c8902903bdf5ea1baed310a565cbd10e\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-669af571686ebf2235f18cd2403659b5\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-45 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-36 is-content-justification-left is-layout-constrained wp-container-37 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-35 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-44 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-40 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-duotone-rgb000-rgb21788120-39 wp-block-image size-large wp-container-content-38\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-duotone-rgb000-rgb21788120-43 wp-block-image size-large wp-container-content-42\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1663:\"\n<div class=\"wp-duotone-rgb4448102-ffb23d-50 wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-48 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-47 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1592:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-51 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1389:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-53 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2040:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-59 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-55\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-57 is-content-justification-left is-layout-constrained wp-container-58 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-56 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308879;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullscreen Cover with Heading, Paragraph, and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1732:\"\n<div class=\"wp-duotone-000000-rgb6288225-64 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/75561b91dac277de8.51291940.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide is-layout-constrained wp-container-61 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"font-size:160px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">In the woods</h2>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora and fauna that call this area home.</p>\n</div>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-62 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"border-radius:100px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:86:\"core/button,core/buttons,core/cover,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2766:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/75561b91dac277de8.51291940.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#000000\",\"rgb(62, 88, 225)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/75561b91dac277de8.51291940.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"font-size:160px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">In the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"white\"} -->\n<p class=\"has-text-align-center has-white-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora and fauna that call this area home.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"100px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"border-radius:100px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1525:\"\n<div class=\"wp-duotone-094850-f9644e-68 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-65 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-66 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1533:\"\n<div class=\"wp-duotone-rgb4247103-rgb21419442-72 wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-69 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-70 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:895:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-73 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6993:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><ul style=\"text-transform:none;\" class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-76 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-75 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:31:35+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-79 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-81 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-80 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:30:31+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-84 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-86 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-85 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-05T21:29:00+00:00\">Jul 5, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-89 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><nav class=\"wp-block-query-pagination is-content-justification-left is-nowrap is-layout-flex wp-container-92 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.2.2&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-31-page=2\" style=\"text-transform:uppercase;\" class=\"wp-block-query-pagination-next has-small-font-size\">Next</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6514:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><ul style=\"text-transform:none;\" class=\"alignfull wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-97 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-95 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:31:35+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:31:35+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-100 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-98 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:30:31+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:30:31+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-103 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-101 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-05T21:29:00+00:00\">07.5</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-05T21:29:00+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><nav class=\"wp-block-query-pagination is-content-justification-space-between is-nowrap is-layout-flex wp-container-106 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.2.2&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-1-page=2\" style=\"font-size:2rem;font-style:normal;font-weight:600;text-transform:uppercase;letter-spacing:1px;\" class=\"wp-block-query-pagination-next\">Next Page</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3842:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-113 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-110 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-109 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title has-medium-font-size wp-elements-234e57400cf5587740bb7caa261d6fc4\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-112 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-111\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-111\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-111-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3879:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-119 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-white-color wp-block-site-title has-medium-font-size wp-elements-e24c80986e13ab3d929b38d6b46e3019\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-118 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-117\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-117\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-117-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2982:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4956719e1d36ae31d9fb9c185b0a148a is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-125 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-f1e98d6c897e424c7d4e8232ded39f0a\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-124 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-123\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-123\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-123-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1232:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2742:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-130 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-129 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-128\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-128\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-128-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3271:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-136 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-133 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-132 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size is-content-justification-right is-layout-flex wp-container-135 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-134\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-134\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-134-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2514:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-140 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-139 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" data-micromodal-trigger=\"modal-138\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container hidden-by-default \" style=\"\" id=\"modal-138\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-138-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2808:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-143 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-contrast-color wp-block-site-title has-large-font-size wp-elements-9728cce79011b64628d7f6beff066787\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-center is-fallback wp-block-navigation is-content-justification-center is-layout-flex wp-container-142 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-141\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-141\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-141-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2602:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-147 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size is-content-justification-right is-layout-flex wp-container-146 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-145\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-145\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-145-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2845:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-151 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-148 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-150 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-149\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-149\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-149-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4178:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-155 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-154 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-153 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2955:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-162 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-157 is-content-justification-left is-layout-constrained wp-container-158 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label for=\"wp-block-search__input-156\" class=\"wp-block-search__label screen-reader-text\">Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input type=\"search\" id=\"wp-block-search__input-156\" class=\"wp-block-search__input\" name=\"s\" value=\"\" placeholder=\"\"  style=\"border-width: 1px\" required /><button type=\"submit\" class=\"wp-block-search__button has-icon wp-element-button\"  style=\"border-width: 1px\" aria-label=\"Search\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-161 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-160 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-159 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-164 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:840:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-167 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2709:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-172 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-layout-flex wp-container-170 wp-block-navigation-is-layout-flex\" aria-label=\"\"><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-169\"><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-169\">\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\">\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-169-content\">\n							<ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2848:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-182 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-180 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-center is-nowrap is-layout-flex wp-container-176 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-178 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-181 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4117:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-184 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-183 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4595:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-190 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-185\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-186 is-vertical is-content-justification-center is-layout-flex wp-container-187 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-188 is-content-justification-right is-nowrap is-layout-flex wp-container-189 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2722:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-200 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-192 is-vertical is-layout-flex wp-container-193 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-199 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-196 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-nowrap is-layout-flex wp-container-195 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-198 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-197 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-204 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1078:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-208 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3155:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-210 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-214 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-217 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2240:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-221 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-225 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<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1445:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1508:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-232 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\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</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1321:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-236 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:688:\"\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\">\n<p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p>\n<cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:51:\"core/image,core/paragraph,core/quote,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1102:\"<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><!-- wp:paragraph -->\n<p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p>\n<!-- /wp:paragraph --><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1518:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-240 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:46;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:572:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-241 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no'),(303,'_site_transient_timeout_wp_remote_block_patterns_ac9d24ab0d31d221cfbca25aa5cdf0ca','1685451787','no'),(304,'_site_transient_wp_remote_block_patterns_ac9d24ab0d31d221cfbca25aa5cdf0ca','a:14:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6458:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" 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 has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-2 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:961:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3717:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1687:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1830:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2907:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-31 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-24 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-25 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-22\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-23 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-28 is-vertical is-layout-flex wp-container-29 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-27 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\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\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-39 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<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1684:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1077:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3152:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-50 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-54 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-57 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1320:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-61 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no'),(305,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(306,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_5\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(307,'_site_transient_timeout_available_translations','1685460444','no'),(308,'_site_transient_available_translations','a:130:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-02 03:21:35\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 09:55:22\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 17:05:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 09:02:17\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"অবিরত\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 14:07:56\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 09:37:21\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 08:48:02\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-20 20:08:45\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:33:50\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.2.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:37:41\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 12:57:54\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 14:37:33\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.2.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-29 21:14:35\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-01 09:15:36\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 07:12:43\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-07 21:00:17\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-19 10:51:23\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-19 05:08:30\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 12:37:03\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-15 19:52:49\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 14:08:08\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 16:21:45\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-05 06:53:02\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-13 11:28:33\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 05:20:27\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-03 19:01:43\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-25 15:00:05\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-23 05:45:53\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 10:18:51\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 14:00:40\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 07:01:02\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-12 13:09:27\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 05:57:21\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-28 12:09:00\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-30 08:24:13\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-26 17:49:51\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-25 02:26:43\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-09 01:41:47\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-27 11:47:10\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 04:46:20\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 21:20:14\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-30 10:02:03\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 11:19:53\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 13:01:51\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-12 08:28:13\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-30 23:24:56\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-29 21:22:43\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 11:15:28\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-09 16:16:57\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 12:32:16\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 08:30:58\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 11:33:10\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 11:33:13\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 17:06:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 10:14:53\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-10 01:15:33\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-16 19:47:32\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 10:05:05\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(309,'WPLANG','','yes'),(310,'new_admin_email','wp@dxpsites.com','yes'),(311,'bsf_analytics_optin','no','yes'),(314,'site_logo','196','yes'),(323,'_transient_timeout_elementor_remote_info_api_data_3.13.4','1685641789','no');
INSERT INTO `wp_options` VALUES (324,'_transient_elementor_remote_info_api_data_3.13.4','a:4:{s:9:\"timestamp\";s:10:\"1685598305\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:64:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:53;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:54;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:55;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:56;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:59;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:60;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:61;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:62;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:63;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(325,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1685641793','no'),(326,'_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:\"Thu, 01 Jun 2023 01:00: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:\"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.3-alpha-55873\";s: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: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:36:\"People of WordPress: Stefano Cassone\";s:7:\"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/05/people-of-wordpress-stefano-cassone/\";s: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, 31 May 2023 20:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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: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:3;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:4;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=15030\";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:125:\"The People of WordPress feature series goes to Italy to interview web designer, photographer and translator Stefano Cassone. \";s: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:15954:\"\n<p><strong>With <a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a> in June, we feature Stefano Cassone, a web designer, photographer and volunteer translator, who believes his life has been transformed through WordPress and its community.</strong></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\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&#038;ssl=1\" alt=\"Stefano with a laptop covered in WordPress event stickers\" class=\"wp-image-15027\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano with a laptop covered in WordPress event stickers</figcaption></figure>\n\n\n\n<p>Stefano has always been fascinated by the internet. His initial learning in the 1990s was through joining friends at a local pub where they could explore how websites were structured and learn to use chat software.</p>\n\n\n\n<p>This led to Stefano creating websites for fun in 1998, and his first paid job was for the shop where he bought comics. He turned to content management systems (CMS) to speed up the creation process for sites, but found he needed more documentation to really understand their capabilities. Then he read a magazine article about WordPress, a CMS which was being used to make incredible blog sites, and was supported by an international community and documentation. Over time, Stefano started using that documentation to work on websites in Italian.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress provides a life-changing turning point&nbsp;</h2>\n\n\n\n<p>Stefano describes himself as an introvert. He found that WordPress helped him to work from home, to develop his skills and the quality of what he could produce, as well as build his self-confidence.&nbsp;</p>\n\n\n\n<p>A catalyst for the turning point in his life and career was the discovery of an area for events on the WordPress dashboard. On this page, he found a forthcoming local meetup in Rome.&nbsp;</p>\n\n\n\n<p>In November 2017, Stefano took the step to go along to this event, led by a curiosity of what he might discover and intrigued by how a software could be supported by a vast community. The topic at the event was on <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>, a command line interface for WordPress. He recalled that he felt outside his comfort zone as he did not regard himself as a developer and at that point, had only used the software for simple jobs. He wondered whether using the software as his only CMS was going to be a long term option and if these meetups were suitable for him.</p>\n\n\n\n<p>At the meetup, people were talking about a forthcoming event, called WordCamp Rome. Through his research, he saw that there was a lot of enthusiasm for this event. This intrigued him and he wondered if it would show him that he could have a career using the software after all.</p>\n\n\n\n<p>Unfamiliar with WordCamps, Stefano found it difficult at first to know what he could go to and how to get involved, but he persevered and attended the event.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;The WordCamp was a great discovery: talks at all levels from basic to those for developers, advanced and very advanced. I was immediately struck by the enthusiasm of the volunteers. It was an environment where I felt very comfortable, so much so, that I asked myself how I could participate in some WordCamps.&#8221;</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<p>From this event, Stefano was encouraged by those he met to consider applying as a volunteer for a future WordCamp.</p>\n\n\n\n<p>There was also much talk at the event about ‘Slack’. It was new to Stefano, but with help from those attending, he signed up for the messaging tool Slack, used by the WordPress community. He was still unsure how he could contribute, and if he would be welcome.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Joining thousands of volunteer translators of WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"800\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=800%2C600&#038;ssl=1\" alt=\"Italian General Translation Editors at WordPress Italia 2022\" class=\"wp-image-15028\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Italian General Translation Editors at WordPress Italia 2022</figcaption></figure>\n\n\n\n<p>Stefano took the plunge and was excited to find there was a team called Polyglots. In this team, people from across the world<a href=\"https://make.wordpress.org/polyglots/\"> translate the WordPress software into many different languages</a>. He started with translating a theme he was using in his work. Little by little he became more interested in plugins and attended meetings with other translators. He offered his skills to translate into Italian themes and plugins in general and as his experience grew, he took on the volunteer role of a General Translation Editor. He also took care of the translation into Italian of the WordPress Core. More recently he has joined the group of translators for the <a href=\"https://make.wordpress.org/docs/handbook/helphub/\">HelpHub</a>, which is part of the <a href=\"https://make.wordpress.org/docs/\">WordPress documentation</a> system.</p>\n\n\n\n<p>He said: “Participating in the WordPress Slack has helped me enormously: I’ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n\n\n\n<p>“It&#8217;s a great way to contribute to WordPress, especially for someone like me who is not a developer. Translating also allows me to fully understand how WordPress works.&#8221; </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I always say that translating themes, plugins, and the Core software is the best way to learn WordPress, better than any course or book.”</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">Sharing skills to support Open Source WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"667\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=667%2C500&#038;ssl=1\" alt=\"Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\" class=\"wp-image-15026\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?w=667&amp;ssl=1 667w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=300%2C225&amp;ssl=1 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.</figcaption></figure>\n\n\n\n<p>Stefano’s growing commitment to the open source WordPress project was further boosted through his volunteering. He was a volunteer at WordCamp Rome 2018 and participated there in his first Contributor Day where he had the opportunity to translate the software with others.&nbsp;</p>\n\n\n\n<p>He was also able to bring his own hobbies and skills to help the project grow and reach others. One example was his passion for photography, and he volunteered as a photographer for many other events in Italy organized by the WordPress community. He said: “This commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.” The more WordCamps he attended, the more he wanted to be part of and keep contributing to the wider WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contribution to WordPress is inspiring</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Stefano at the Support Table at a WordPress Contributor Day\" class=\"wp-image-15025\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano at the Support Table at a WordPress Contributor Day</figcaption></figure>\n\n\n\n<p>When Stefano was asked to become an organizer for the WordPress meetup in Rome in October 2019, he knew he wanted to be part of reaching and supporting more people in his area. He faced challenges with finding venues, but a greater issue was to come: the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>Spurred on by the <a href=\"https://it.wordpress.org/\">Italian WordPress community</a> as a whole, he was determined that the meetup was still needed. The regular event was transformed into an online meeting. He was able to gain help from people he had met as a volunteer to share their expertise with meetup attendees.&nbsp;</p>\n\n\n\n<p>The community in Italy also worked together to put on WordCamp Italia online. It brought together the organizers of previous meetups and WordCamps, and new contributors too. Stefano volunteered in both online editions of this camp, including being part of the social and communication team. He found it to not only be a fun experience but also one that helped him grow professionally and learn from so many others.</p>\n\n\n\n<p>He went onto help restart the <a href=\"https://www.meetup.com/romawordpress/\">Rome WordPress meetup</a> in-person meetings in May 2022, was an organizer for the third WordCamp Italy, and has been volunteering for camps in 2023.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What will WordPress bring you?</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"533\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=533%2C800&#038;ssl=1\" alt=\"Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\" class=\"wp-image-15024\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?w=533&amp;ssl=1 533w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 533px) 100vw, 533px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano inspired by his journey at WordCamps asks what will WordPress bring you?</figcaption></figure>\n\n\n\n<p>“Persona and professional growth and friendship” are some of the things they have brought Stefano. Contributing boosted his confidence and willingness to try new opportunities in his work.&nbsp;</p>\n\n\n\n<p>He said: “The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn. With WordPress you never stop learning.”</p>\n\n\n\n<p>His top recommendation is: “Join your local meetup or think about organizing one, it will introduce you to an amazing world. Don’t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don’t worry. The WordPress community is inclusive so you’ll always feel welcome, and you will see enthusiasm like you’ve never seen at other IT events. Sign-up and get involved.”</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<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Stefano Cassone (<a href=\'https://profiles.wordpress.org/deadpool76/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deadpool76</a>)&nbsp;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/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), the late Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) and Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for interviews, writing the feature and collaborating on images, to Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Mark Smallman (<a href=\'https://profiles.wordpress.org/marks99/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marks99</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), and Maja Loncar (<a href=\'https://profiles.wordpress.org/majaloncar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>majaloncar</a>) for help with reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\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\";s: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:\"15030\";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: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:33:\"Celebrating 20 Years 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/05/celebrating-20-years-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 May 2023 05:27: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:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"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=14981\";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:244:\"May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little forked b2/cafelog to create WordPress Version 0.70. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!\";s: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:5402:\"\n<p>You did it and I think congratulations are in order! You, dear WordPress enthusiast, have helped WordPress thrive for the past 20 years. It’s an incredible accomplishment, and I couldn’t be more thankful.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Did you know: WordPress is seven years older than TikTok (<a href=\"https://en.wikipedia.org/wiki/TikTok\">2016</a>), came four years before Tumblr (<a href=\"https://en.wikipedia.org/wiki/Tumblr\">2007</a>) and the first iPhone (<a href=\"https://en.wikipedia.org/wiki/IPhone_(1st_generation)\">2007</a>), beat Facebook to market by about a year (<a href=\"https://en.wikipedia.org/wiki/Facebook\">2004</a>), and is about five weeks older than Tesla (<a href=\"https://en.wikipedia.org/wiki/Tesla,_Inc.\">July 2003</a>).</p>\n</blockquote>\n\n\n\n<p>May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little <a href=\"https://wordpress.org/about/\">forked b2/cafelog</a> to create <a href=\"https://wordpress.org/documentation/wordpress-version/version-0-70/\">WordPress Version 0.70</a>. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>You can read about the first 20 years of WordPress in two parts:</em><br><a href=\"https://wordpress.org/book/milestones/\">Milestones: The Story of WordPress (2003 &#8211; 2013)</a><br><a href=\"https://wordpress.org/book/\">Building Blocks: The Evolution of WordPress (2013 &#8211; 2023)</a></p>\n</blockquote>\n\n\n\n<p>Whether you celebrate at one of the <a href=\"https://wp20.wordpress.net\">100+ meetup</a> events, are strutting your stuff in some <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">limited edition WP20 swag</a>, or joining in a collective <a href=\"https://wp20.wordpress.net/live/\">reflection on WordPress</a> in your unique way on social media, WP20 is a celebration of you – the WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Common Legacy</h2>\n\n\n\n<p>As I scroll through the amazing photos and memories shared on social media of past WordCamps and meetups, I think about the people who got WordPress to where it is today. The thousands of contributors who patched bugs and tested new features; organized events and fostered community; or wrote documentation and translated strings — how those contributions paved the road we travel today. A road that allows more people across the globe to use WordPress and contribute to WordPress, advancing the mission of democratizing publishing and giving us a little more freedom in the world. To the giants on whose shoulders we stand, those unsung, tireless, and passionate committers working through long nights and longer weekends: all of WordPress thanks you!</p>\n\n\n\n<p>The dedication to and support of open source software has and will continue to ensure that WordPress endures for another 20 years and beyond.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>the freedom to build.<br>the freedom to change.<br>the freedom to share.</p>\n</blockquote>\n\n\n\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement becomes. And WordPress benefits, not just the present community, but future generations of contributors, entrepreneurs, educators, and enterprises large and small alike.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Shared Future</h2>\n\n\n\n<p>If the last two decades are any indication of what lies ahead, then wow, the opportunity to innovate, lead, and sustain a versatile publishing platform will be profound!</p>\n\n\n\n<p>Looking ahead at the next few years, our community will navigate <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Phases 3 and 4</a> together, delivering features that bring easy collaboration and multillingual support directly into the software. These next steps for WordPress will ensure our legacy of creating useful, relevant, and reliable software remains strong while keeping in mind the core elements of our mission regarding accessibility, performance, and stability.</p>\n\n\n\n<p>By renewing our emphasis on the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> program, and continuing to elevate our standing, we can make WordPress the household name it deserves to be. We can be more recognizable in known growth markets such as the enterprise and education sectors, but also every community beyond the open source and developer communities. Opportunity abounds!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When a great ship is in harbor and moored, it is safe, there can be no doubt. But that is not what great ships are built for. </p>\n<cite>Clarissa Pinkola Estes</cite></blockquote>\n\n\n\n<p>There is no time like the present to invest in the future of WordPress. The community is the greatest asset within the WordPress ecosystem. This means every WordPress user, from casual bloggers to enterprise extenders, is invited to rediscover all that our community means and does, and how each one of us can further our positive impact.</p>\n\n\n\n<p>Through all our planning, both short- and long-term, we can ensure that WordPress never loses sight of its user. Each one of us individually, and together, can do our part to make WordPress better, just as we have done each day for the past <a href=\"https://howlongagogo.com/date/2003/may/27\">7,305 days</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:\"14981\";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: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:64:\"WP Briefing: Episode 56: What to Know About 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2023 12: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=14968\";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:257:\"Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.\";s: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/05/WP-Briefing-056.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:16949:\"\n<p>Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.</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/richtabor/\">Rich Tabor</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</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/bjmcsherry/\">Brett McSherry</a> and <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://developer.wordpress.org/playground/\">WordPress Playground</a> and the <a href=\"https://github.com/WordPress/wordpress-playground\">Playground Github repo</a></li>\n\n\n\n<li><a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a> </li>\n\n\n\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day,</a> and <a href=\"https://europe.wordcamp.org/2023/presenting-wp-connect/\">WP Connect</a></li>\n\n\n\n<li><a href=\"https://wordpress.slack.com/archives/C04EWKGDJ0K\">#meta-playground</a> in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a></li>\n\n\n\n<li><a href=\"https://chat.openai.com/\">ChatGPT</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.cloudfest.com/\">CloudFest</a> and <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a></li>\n\n\n\n<li>The <a href=\"blank\">Kim Parsell Memorial Scholarship</a> for travel to WordCamp US 2023</li>\n\n\n\n<li>Find your closest location for a <a href=\"https://wp20.wordpress.net/\">WordPress 20th Anniversary celebration</a></li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">Changes to the WCUS event for 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14968\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]</strong></p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>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. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>(Intro continues)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]</strong></p>\n\n\n\n<p>Today we&#8217;re gonna spend a little time talking about WP Playground. This is a project that debuted at State of the Word in December 2022, but it was demoed for me about a month prior in November.</p>\n\n\n\n<p>I was, and remain, absolutely floored by the potential future applications, as well as the innovative thinking behind it. So I&#8217;ve invited a couple of excellent WordPress futurists to the show today so that we can listen in on their conversation.</p>\n\n\n\n<p>Welcome guys.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:07]</strong></p>\n\n\n\n<p>Hey everyone, I&#8217;m Rich Tabor, and I&#8217;m here today with Adam Zielinski to talk about WordPress Playground. So for those of you who don&#8217;t know what WordPress Playground is, can you tell us a little bit more about it, Adam?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:18]</strong></p>\n\n\n\n<p>Absolutely. WordPress Playground is WordPress that works in your browser like there&#8217;s no server with PHP or database like there&#8217;s just your browser and JavaScript, and you can run it in so many more places that we’ll all get to. For example, I just came back from WordCamp Gliwice, where on a Contributor Day, a couple of developers got set up with WordPress in just a couple of minutes, whereas normally, it can take hours to do that.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:44]</strong></p>\n\n\n\n<p>Yeah, that&#8217;s, that&#8217;s pretty impressive. Do you think that, particularly for WordCamps and other demo-type areas, this would be something that&#8217;s very useful? Or what do you think would be the other problems that could be solved with WordPress Playground?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:55]</strong></p>\n\n\n\n<p>Playground solves one primary problem, and that is WordPress is pretty difficult to get started with. I&#8217;m not even talking about creating your website, but let&#8217;s say, someone told you there&#8217;s this WordPress thing that you should try. Well, you Google for it, and you find installation instructions, and there&#8217;s like three hours of work for you there.</p>\n\n\n\n<p>So then maybe you&#8217;ll find a hosting company, and you have to pay some money. So with WordPress Playground, you can actually try it for free because there&#8217;s no cost to run it. It just runs on your device. If you&#8217;re a developer, and you want to start learning WordPress, normally you have to go through quite an extensive setup process, and there are some tools to make it easier, but maybe there&#8217;s still friction like you have to even own a computer, like a PC device or a Mac. Playground can run on your phone, and it can power interactive tutorials that you can use and just start learning there and there with zero setup.</p>\n\n\n\n<p>Like if you work on a product team and someone asks you to test a code change, with Playground you can just click a link and test it with no infrastructure behind it. And if you&#8217;re a company creating a plugin, you can just show your plugin in a live demo to people. And this isn&#8217;t something many plugins are doing because it&#8217;s quite hard to get a live demo set up.</p>\n\n\n\n<p><strong>[Rich Tabor 00:03:12]</strong></p>\n\n\n\n<p>Ah, that&#8217;s pretty impressive. So, you know, amongst like tutorials, code changes for developer environments, the mobile application running, do you think that, since there&#8217;s such a wide brevity of ideas that WordPress Playground can kind of plug into, would this be more of a developer tool?</p>\n\n\n\n<p>Is that right? Or is Playground more of a like a click and play-type application that can run anywhere and demo anything?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:03:36]</strong></p>\n\n\n\n<p>I&#8217;d say it&#8217;s both, but it&#8217;s more transparent for the users. So there are a whole lot of things you can do with Playground as a developer, as I just mentioned. But who are you doing these things for? Well, some of them are for the users, as in live demos, or there&#8217;s a WordCamp Europe coming, and I know some people are doing workshops there. They are going to use Playground to get everyone set up. So now that&#8217;s, well, maybe a workshop that teaches you how to build a theme, for example, right? Now you can just get started without any setup process. So there&#8217;s both, it&#8217;s very useful for development teams, and it&#8217;s very useful for them to build stuff for the final users.</p>\n\n\n\n<p><strong>[Rich Tabor 00:04:21]</strong></p>\n\n\n\n<p>That&#8217;s great. I know you, and I have probably both been in the same scenario at WordCamps when you&#8217;re trying to get dev environments set up, and it takes, you know, the better half of the workshop to get to step one. So this is really gonna be interesting to see it, especially at WordCamp Europe, and to see it getting into action.</p>\n\n\n\n<p>Are you planning on going to WordCamp Europe this year?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:04:39]</strong></p>\n\n\n\n<p>Absolutely, I will have a table at Contributor Day, a WordPress Playground table. So yeah, everyone&#8217;s invited to come over. I&#8217;ll show you a lot of cool stuff. And then at WP Connect on Saturday at 10:00 AM, there will be a WordPress Playground session where you&#8217;ll be able to learn more and see some cool demos.</p>\n\n\n\n<p>And this will be a conversational format, so we&#8217;ll just have a nice chat.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:01]</strong></p>\n\n\n\n<p>Super cool. So how else can people find out a little bit more info about Playground and perhaps even get involved and contribute to the project?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:05:08]</strong></p>\n\n\n\n<p>There&#8217;s a developer.WordPress.org/playground website. There&#8217;s a link in a show notes where you&#8217;ll be able, like this is the perfect entry point to the entire rabbit hole of WordPress Playground.</p>\n\n\n\n<p>There&#8217;s a quite a few projects under the WordPress Playground umbrella, and they all live in a single GitHub repository where you can just find any issue that interests if you want to contribute and just start contributing. Also, there&#8217;s a Slack channel in WordPress org space called #meta-playground, and I highly encourage everyone interested in coming over to say hi.</p>\n\n\n\n<p>And probably one of the best places to ask questions and get acquainted with the community.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:54]</strong></p>\n\n\n\n<p>Oh, that&#8217;s great; I&#8217;m very intrigued about the project overall. I think that there&#8217;s an immense amount of potential, for WordPress Playground. Just last question here, like, where do you see the future of this project going? What is the most interesting application that hasn&#8217;t been done yet, or the things that are really gonna be the next level in unlocking Playground for everyone?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:06:12]</strong></p>\n\n\n\n<p>There&#8217;s quite a few. Imagine being able to go to WordPress.org and have a WordPress demo right then and there without having to download anything. Then you customize it, and you have a button to host your website anywhere or just to download it.</p>\n\n\n\n<p>Imagine having a live preview for all the themes and plugins in the directory and even in WordPress core, but these are sooner than later. Maybe like, let&#8217;s talk more grandiose, shall we? So there&#8217;s this term, 1 billion new users coming online in the next, like in the nearest future, and plenty of them doesn&#8217;t even own a desktop device. Maybe they have a mobile phone, maybe they have a tablet, maybe we&#8217;re talking about a young, prospective developer somewhere. And currently, if you don&#8217;t own a desktop device, you cannot contribute to the WordPress plugin ecosystem at all.</p>\n\n\n\n<p>Like, we&#8217;re seeing more and more of creating themes with no code, which is really exciting. But you cannot build the plugin, really. Well, with WordPress Playground. Suddenly you can do development on a mobile device. So development tools and code editors and just the entire suite of things we use as the developers on our desktop of devices like this may come online and be available in your browser.</p>\n\n\n\n<p>And if you&#8217;re on a train and you just have a phone with you, but you still want to learn, how to build a plugin, well, you&#8217;ll be able to do that. Furthermore, there&#8217;s a lot of exciting opportunities with ChatGPT, as in, well, here&#8217;s a WordPress running entirely on your device. So maybe if that&#8217;s connected to ChatGPT, you&#8217;ll be able to say, well, I like fish, or like, I want two columns and a photo of a racing car on top of it.</p>\n\n\n\n<p>And because ChatGPT can output HTML, we connect the two, and suddenly, you can build a website entirely in your browser using natural language.</p>\n\n\n\n<p><strong>[Rich Tabor 00:08:20]</strong></p>\n\n\n\n<p>Man, that&#8217;s, that&#8217;s really interesting. It really does unlock the next, potentially the next like, wave of innovation in the WordPress experience, especially removing all the complications of getting set up and actually seeing what&#8217;s there. I think that it really could, be huge for users every day.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:08:38]</strong></p>\n\n\n\n<p>Oh, here&#8217;s one more. So, edge computing is big lately, and it&#8217;s going to be bigger in the future. WordPress Playground runs on this new technology called Web Assembly, and it just happened so that a bunch of edge computing providers allows you to run web assembly on their gear. So imagine having WordPress running entirely in edge infrastructure with no centralized server.</p>\n\n\n\n<p>Truly decentralized WordPress. It could be big for a well cost of operating, but also for speed, but also even further down in the future. Imagine downloading the actual, you know, even WordPress around time to your device and having the entire website on your phone. So then you know, you&#8217;re on a train, you enter a tunnel, but you can still browse that WooCommerce store and add things to your cart even though there is no range at all.</p>\n\n\n\n<p><strong>[Rich Tabor 00:09:32]</strong></p>\n\n\n\n<p>Wow, that&#8217;s, that&#8217;s pretty crazy. How far out there do you think something like that is?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:09:37]</strong></p>\n\n\n\n<p>It&#8217;s hard to tell. I mean, technically, it is possible. There are a lot of challenges with regard to privacy, right? And data security for the edge computing case specifically. As for the development tools, there was a Cloud Fest hackathon earlier this year where I was with Daniel Bachhuber, also from Automattic, and we led this exciting project that brought the WordPress development environment into the browser using a couple of editors that are out there, and this is too much of an MVP for actual production use yet, but we got it working, and we build an actual plugin on a phone without internet access.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:19]</strong></p>\n\n\n\n<p>Wow. And that was just a hackathon, just hacking at it to see what you can get.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:23]</strong></p>\n\n\n\n<p>Yeah, it was two and a half days.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:25]</strong></p>\n\n\n\n<p>Oh, that&#8217;s awesome. That&#8217;s really cool, man. Well, this has been quite a pleasure. Thanks, Adam, for chatting all about WordPress Playground. Folks, just be sure to check out developer.WordPress.org/playground to explore, experiment, and play with WordPress Playground.</p>\n\n\n\n<p>This has been awesome, Adam.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:43]</strong></p>\n\n\n\n<p>Thank you so much for having me, Rich.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:45]</strong></p>\n\n\n\n<p>What a remarkable new way of working with and experiencing WordPress. I would love to be able to find ways across the project and ecosystem to help folks see what they&#8217;re getting into before they get into it, but also, who knows what the future holds for that project. Keep an eye on it.</p>\n\n\n\n<p>(Musical interlude)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:10]</strong></p>\n\n\n\n<p>That brings us to our small list of big things happening right now in the WordPress project. The first one is that the Kim Parel Memorial Scholarship for WordCamp US 2023 is open, and applications for it are the WordPress Foundation will once again be offering that scholarship for Travel to WordCamp US.</p>\n\n\n\n<p>It is for specifically for women in technology, women in the WordPress space. I&#8217;ll include a link to that in the show notes.</p>\n\n\n\n<p>The second thing is WordPress&#8217; 20th anniversary is still coming, as we heard in the last podcast.</p>\n\n\n\n<p>So we have reached over 100 events that are scheduled on or around May 27th, which is WordPress’ launch date. There is still time to find your closest location and attend one of those events. And probably, there&#8217;s also time to pull together an event of your own. Head on over to wp20.WordPress.net if you would like to see events in your area.</p>\n\n\n\n<p>And the third thing is WordCamp US 2023. I realize WordCamp Europe comes before that, but the programming team actually has a really interesting thing that they&#8217;re doing this year. They have some changes to the way that they are organizing the event and finding speakers for the event. But as always, they are working very hard to make sure it is an attendee-focused event.</p>\n\n\n\n<p>I&#8217;m gonna include a link or two to some announcements that are really worthwhile there. Head on over to the podcast page to see those. And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Thanks again to my guests, and I&#8217;ll see y&#8217;all in a couple of weeks.&nbsp;</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:\"14968\";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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 6.2.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 May 2023 04:09:39 +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:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14974\";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:33:\"WordPress 6.2.2 is 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5451:\"\n<h2 class=\"wp-block-heading\">WordPress 6.2.2 is now available!</h2>\n\n\n\n<p>The 6.2.2 minor release addresses <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.2&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">1 bug</a> and 1 security issue. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.9 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.2 is a rapid response release to address a regression in 6.2.1 and further patch a vulnerability addressed in 6.2.1. The next major release will be<a href=\"https://make.wordpress.org/core/6-3/\"> version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>The update process will begin automatically if you have sites that support automatic background updates.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.2.zip\">download WordPress 6.2.2 from WordPress.org</a> or visit your WordPress Dashboard, click “Updates,” and click “Update Now.”</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Security updates included in this release</strong></h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities and allowing them to be fixed in this release.&nbsp;</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user-generated data; thanks to Liam Gladdy of<a href=\"https://wpengine.com/\"> WP Engine</a> for reporting this issue.</li>\n</ul>\n\n\n\n<p>The issue above was originally patched in the 6.2.1 release, but needed further hardening here in 6.2.2. The Core team is thankful for the community in their response to 6.2.1 and collaboration on finding the best path forward for proper resolution in 6.2.2. The folks who worked on 6.2.2 are especially appreciative for everyone’s understanding while they worked asynchronously to get this out the door as quickly as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>.</p>\n\n\n\n<p>WordPress 6.2.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/Clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/Otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, and <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14974\";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: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:50:\"WordPress 6.2.1 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2023 18:32: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:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14955\";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:339:\"WordPress 6.2.1 is now available! This minor release features 20 bug fixes in Core and 10 bug fixes for the block editor. You can review a summary of the maintenance updates in this release by reading the Release Candidate announcement. This release also features several security fixes. Because this is a security release, it 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:9:\"Jb Audras\";s: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:7600:\"\n<h2 class=\"wp-block-heading\">WordPress 6.2.1 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">20 bug fixes in Core</a> and <a href=\"https://github.com/orgs/WordPress/projects/88\">10 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2023/05/09/wordpress-6-2-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>This release also features several security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.1 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.1 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-3/\">version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.1.zip\">download WordPress 6.2.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release.</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user generated data; thanks to Liam Gladdy of <a href=\"https://wpengine.com/\">WP Engine</a> for reporting this issue</li>\n\n\n\n<li>A CSRF issue updating attachment thumbnails; reported by <a href=\"https://johnblackbourn.com/\">John Blackbourn</a> of the WordPress security team</li>\n\n\n\n<li>A flaw allowing XSS via open embed auto discovery; reported independently by Jakub Żoczek of <a href=\"https://research.securitum.com/\">Securitum</a> and during a third party security audit</li>\n\n\n\n<li>Bypassing of KSES sanitization in block attributes for low privileged users; discovered during a third party security audit.</li>\n\n\n\n<li>A path traversal issue via translation files; reported independently by Ramuel Gall &amp; Matt Rusnak at Wordfence, and during a third party security audit.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> and <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>.</p>\n\n\n\n<p>WordPress 6.2.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/amin7/\">amin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</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/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a>, <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</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/mdxfr/\">Marc</a>, <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</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/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</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/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14955\";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: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:54:\"WP Briefing: Episode 55: Happy Anniversary, 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:74:\"https://wordpress.org/news/2023/05/episode-55-happy-anniversary-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:\"Mon, 08 May 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: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=14949\";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:217:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 55th episode of the WordPress Briefing as she looks back at the 20 years of WordPress and how the open source community made WordPress what it is 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: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/05/WP-Briefing-055.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:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15017:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 55th episode of the WordPress Briefing as she looks back at the 20 years of WordPress and how the open source community made WordPress what it is today.</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>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/bjmcsherry/\">Brett McSherry</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/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://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\">WordPress 6.3 Planning Proposal &amp; Call for Volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a></li>\n\n\n\n<li>WordCamp Europe: \n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/call-for-volunteers/\">Call for volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/04/24/table-leads-needed-for-wceu-2023-contributor-day/\">Table Leads Needed for WCEU 2023 Contributor Day</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/24/defining-the-polyglots-contributor-ladder/\">Defining the Polyglots contributor ladder</a><br></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14949\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>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 smallest 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>[Josepha Haden Chomphosy 00:00:40]&nbsp;</p>\n\n\n\n<p>In case you hadn&#8217;t heard yet. WordPress is celebrating its 20th anniversary on May 27th.&nbsp;</p>\n\n\n\n<p>There are a lot of celebrations and parties happening all across the world, hopefully with cake, because we all know that a party without cake is just a meeting and no one wants a year-long meeting about how old you are.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:59]&nbsp;</p>\n\n\n\n<p>But if you&#8217;ve not yet joined the celebrations, there&#8217;s still time to share your favorite WordPress merch, your favorite WordCamp memory, host a whole dang party if you want to, or share a video to post on wp20.wordpress.net. I&#8217;ve got links to everything you need in the show notes. So if you haven&#8217;t done it yet, you can do that while you listen to today&#8217;s episode.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:14]&nbsp;</p>\n\n\n\n<p>I&#8217;ve got links to everything you need in the show notes. So if you haven&#8217;t done it yet, you can do that while you listen to today&#8217;s episode.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:22]&nbsp;</p>\n\n\n\n<p>Today, WordPress is the leading CMS in the market. And according to W3Tech&#8217;s it powers 43% of the web. And that&#8217;s like 35% of the top 10,000 sites that are built using this software. And sometimes, that&#8217;s as a website, sometimes as a framework, but always as a way for people and businesses to find a space on the web to call their own.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:45]&nbsp;</p>\n\n\n\n<p>In 2021. The first-ever study on the WordPress ecosystem gave us an idea of just how large our ecosystem is. We already kind of had a sense that millions of people make a living through WordPress because we know that we are supporting small business owners and freelancers all the way out to agencies and content creators.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:06]&nbsp;</p>\n\n\n\n<p>But according to that study, WordPress at the time was powering 82 million websites and enabled an estimated economy of $597 billion. The success of an economy like this and various other alternative economies hinges on the success of invisible open source software that powers the web, just like WordPress, that has a tonne of growth and a lot of wins since that first Cafe Log fork way back in 2003.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:37]&nbsp;</p>\n\n\n\n<p>And WordPress could just say pencils down, everybody. Good job, team, and just kind of watch what comes next. But I&#8217;ve never met a word processor, emboldened as we are by our belief in open source freedoms, who stepped away from a challenge worth facing the recognition that everyone should have those freedoms whether they know they exist or not. Because I know that no one cares as much about open source freedoms as open source maintainers. But the recognition that everyone has the right to them anyway is built into the foundations of what WordPress is and who WordPress is.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:13]</p>\n\n\n\n<p>There are big plans for WordPress future, many of which are grounded in the promise of a new block editor within WordPress that aims to lower the barriers to entry for people at any point in their learning curve. So let&#8217;s take a look at what this means for WordPress, the software, and follow up about what it means for the WordPress community.&nbsp;</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:03:31]</p>\n\n\n\n<p>Firstly, the software right at the end of 2018, the Gutenberg editor was merged into WordPress Core. And it&#8217;s subverted the way that people had always managed their content. It brought with it this new concept of site building that focused on blocks as the primary mode of creation. It was modular and required very little code knowledge.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]</p>\n\n\n\n<p>Arguably also very little skill with design. Although if you&#8217;ve ever seen me tried to design something with blocks, you will know it takes some skill. But still, the ultimate goal was to make those fundamental user interactions of managing the block and apply them in any place you could manage your site using WordPress.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]</p>\n\n\n\n<p>And if you think about the possibility to create media-rich content without having to work with shortcode, without having to know HTML workarounds, it opens the opportunity for many of us in the WordPress community to own our digital presence. In case it wasn&#8217;t already clear, this, my friends, is an audacious project, and it&#8217;s even more so if you remember that we have this existing and massive ecosystem that is enabled and empowered by our software.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:42]</p>\n\n\n\n<p>And as we look forward to the third phase of the Gutenberg Project, collaborative editing inside a WordPress installation will soon be a reality, which if you are like me and you never work on a website alone, you&#8217;re probably just dying to have. I say all this not to toot the horn have WordPress or belabor our success but rather to emphasize the importance of what I&#8217;m going to say next, which is how this CMS got to where it is, namely through the work of the community.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:12]</p>\n\n\n\n<p>WordPress has survived, and I would dare to say thrived through decades of constant economic, cultural, and technological shifts. And I believe that the thing that keeps us innovating fast enough to stay relevant but slow enough to be ethical, is how the community actively engages with the open source project.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:32]</p>\n\n\n\n<p>We know that our strength is directly tied to the resilience of our contributors. And we know that the software we ship is shaped by the people who are willing to tell us what they love, what they hate, and what they hope to see. When the WordPress project started, we mainly had code contributions as a way to give back, but over time, the project has grown to include contributions to learning, community building, and translations, among other things, but all of that exists alongside the CMS-focused contributions.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:03]</p>\n\n\n\n<p>Because WordPress as an organization understands that it is an integral part of an ecosystem of 1000s of global companies and millions of individual people who are building careers, starting businesses, learning new skills, and becoming part of something meaningful. I know that I talk just all the time about the greatness of WordPress as a software and community, which makes sense.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:29]</p>\n\n\n\n<p>I really do love the work I do with you all. But I am equally in awe of this open-hearted journey of disruption that WordPress represents as an open source project. WordPress and its community is part of a long line of disruptors; blogs made publishing available to everyone, which maybe doesn&#8217;t sound like a big deal right now because you&#8217;ve been around blogging forever.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:51]</p>\n\n\n\n<p>You&#8217;ve been able to just put your thoughts on the internet with almost no effort for as long as you have known the internet existed, but WordPress, at the time, was and honestly remains the low code open source CMS of choice. It has been for years. And so, let me backtrack you through the 10,000-foot milestones of our journey here.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:14]</p>\n\n\n\n<p>Gutenberg has been around since 2013. It&#8217;s 10 years. I know, don&#8217;t get scared, we&#8217;re celebrating 20 years. So it&#8217;s been around for half of our time as a concept. Open source as a concept was formalized in the 1980s. Though it definitely has been around longer than that as a concept and a way of working.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:34]</p>\n\n\n\n<p>And this low-code, no-code movement that we hear about from time to time that has been around since the 1970s, and just because we first became aware of it in the 1970s doesn&#8217;t mean that that&#8217;s when it actually first was discussed or thought about or used. Which means that you are in this moment, decades deep into projects that changed our entire understanding of the web.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:59]</p>\n\n\n\n<p>So grab a slice of cake, and raise a glass to 20 great years of WordPress, and I am going to raise a glass to 20 more years of continuing our journey together.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:17]</p>\n\n\n\n<p>Which brings us effervescently to the small list of big things. Yeah, I said effervescently.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:24]</p>\n\n\n\n<p>So there are a lot of things happening in the WordPress project over the next couple of weeks. There is a lot of testing going on. There are a lot of releases that are getting underway. There are events and things. So here&#8217;s my rundown of stuff you should take a look at.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:38]</p>\n\n\n\n<p>So firstly, there is a post out about performance improvements from 6.2. That is just inviting an open discussion so that we can get more of those improvements in better shape to get into the 6.3 release. And speaking of the 6.3 release that is coming, just last week, we announced the release squad that we have.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:58]</p>\n\n\n\n<p>It is an extra heavy release squad because we also are working toward the 6.4 release just at the same time. So there&#8217;s the folks who are running the 6.3 release, and they have committed to working openly and in public channels as much as possible so that the 6.4 folks have a chance to really take a look at what goes into a release, the questions that we ask, the philosophies we believe in, and then that 6.4 release oil pick up probably, my guess is August-ish, mid-August or so.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:32]</p>\n\n\n\n<p>That 6.4 release is specifically going to be made up entirely of diverse genders. People that we historically see are underrepresented in technology, but as always, we accept contributions from everyone for all releases.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:48]</p>\n\n\n\n<p>The third thing is that we have WordCamp Europe coming up, that is June 8 and 10th. So a little bit past the two-week mark.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:54]</p>\n\n\n\n<p>However, there is a final call for volunteers for anyone who wants to be able to help at the event. I personally have always enjoyed doing that kind of volunteer work. It helps you get to know your community even a bit better. And I don&#8217;t know; I&#8217;m just kind of an extroverted people person. So, of course, I always want to volunteer, but that call is still open. And they&#8217;re in the last phases of that.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:17]</p>\n\n\n\n<p>There is also a team or two that needs some help with getting leads for the contributor day that happens leading up to WordCamp. Europe, I know that the testing team needs a lead for the table, and so if you enjoy the process of triaging or testing or helping people get their environment set up, that is a great opportunity.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:37]</p>\n\n\n\n<p>And the final thing on my small, my big small list of big things is that we have a kind of a review of the currently defined contributor ladder for the Polyglots team. There are a number of posts over the years where we talk about the ways that people move through being a contributor.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:57]</p>\n\n\n\n<p>One of the things that we know about almost all contributor ladders is that there&#8217;s no time requirement between the steps, but in general, it functions like a ladder. So you do have to have, like, rung one. And then, rung two, if you try to skip from rung one to rung three, you will have a lot of difficulty.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:17]</p>\n\n\n\n<p>Not impossible, but it&#8217;s harder than going 1, 2, 3 In the normal sequential order. And so that&#8217;s a whole discussion that&#8217;s happening over there. There&#8217;s a link to all of these things in the show notes.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:28]</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy,  and I&#8217;ll see you again in a couple of weeks.</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:\"14949\";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: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:43:\"2022 Annual Survey Results &amp; Next Steps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\";s: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, 04 May 2023 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:6:\"survey\";s:7:\"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=14923\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. For 2022, the survey received a comprehensive update, the first in six years. The total number of questions was reduced to 29 from nearly 100, socio-economic questions were mostly removed, and the Likert scale was [&#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: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:4920:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. For 2022, the survey received a comprehensive update, the first in six years. The total number of questions was reduced to 29 from nearly 100, socio-economic questions were mostly removed, and the Likert scale was introduced. These updates were intended to increase the completion rate of the survey, enable a more efficient and structured analysis of these data, and position the survey to best gauge the topics that matter most to the WordPress community.</p>\n\n\n\n<p>My goal is that the input received via the survey helps inform initiatives and focus areas for WordPress in the near term, along with other signals, such as conversations in the community, the Making WordPress blogs, and events. Such data play a key role in shaping the direction and strategy of the project and measuring progress in focus areas.</p>\n\n\n\n<h1 class=\"wp-block-heading\">2022 Highlights</h1>\n\n\n\n<p>The 2022 edition of the survey experienced a 26% increase in completion rate, however, submissions decreased by 56% to roughly 3400, including about 800 contributors. For the 2023 survey, promotion will be increased, hopefully counteracting the declining submissions.</p>\n\n\n\n<p>Here are some key takeaways:</p>\n\n\n\n<ul>\n<li>The survey shows an increased usage of blocks and the new site editor (versus the classic editor), which shouldn’t come as a surprise since the default theme is now a block theme.&nbsp;</li>\n\n\n\n<li>22% of respondents have only used WordPress for a year or less. Those responding to the survey are also getting a bit older, with fewer responses from those under 40 than in prior years.</li>\n\n\n\n<li>1 in 5 respondents learned about WordPress from a coworker, and about the same percentage from using a search engine.&nbsp;</li>\n\n\n\n<li>In 2022, WordPressers continued to learn about WordPress (68%), taught others about WP (48%), and built sites for others (55%).</li>\n\n\n\n<li>WordPressers choose the CMS platform because it’s open source (62%), flexible (47%), low risk (45%), cost-effective (45%), and has a positive reputation (41%).</li>\n\n\n\n<li>57% of survey participants obtained news and training directly from <a href=\"http://wordpress.org\">WordPress.org</a>. While that is the primary source, other sites remain very important: search engines (46%), YouTube (40%), other WordPress communities (35%), and social media (30%)</li>\n\n\n\n<li>The overwhelming majority of respondents don’t regularly use other CMS platforms, and 21% of respondents use none of the top 20 WordPress plugins.&nbsp;</li>\n\n\n\n<li>Respondents continue to state that “WordPress is as good as or better than other CMS platforms,” with 68% agreeing. Elements that respondents feel are the best aspects of WordPress include “ease of use,” “flexibility,” and/or “plugin options,” all about 30% each. When asked about the most frustrating elements of WordPress, 1 in 5 said, “nothing,” while approximately 30% referenced difficulties with site editing / Gutenberg.</li>\n\n\n\n<li>The overall contributor experience remains positive and something I continue to care about deeply. 64% shared they had a positive experience, and 24% viewed their experience as “neutral.” Contributors also feel welcome at the same percentages (64% agree and 24% are neutral).</li>\n</ul>\n\n\n\n<h1 class=\"wp-block-heading\">What’s Planned for 2023</h1>\n\n\n\n<p>In the next iteration of the survey, the plan is to improve the language options for completing the survey and continue investing in refining the questions and how they are asked. It is important to be mindful that completing a survey takes time, so we want to make sure community members are being asked questions that help WordPress the most.&nbsp;</p>\n\n\n\n<p>The tentative plan is to launch the 2023 edition in August. This will set up an opportunity for the 2023 results and, most importantly, your input to inform planning for 2024’s key initiatives and focus areas. The community’s feedback is vitally important to the success and direction of the project. Moving the survey to earlier in the year can positively affect planning and dialogue.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/files/2023/05/2022-Annual-Survey-Final.pdf\">View the 2022 Slide Deck</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Big thank you to <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for the analysis and editorial support. Thanks also to <a href=\'https://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a>, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> for their reviews and final edits.</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:\"14923\";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: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:37:\"The Month in WordPress – April 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/05/the-month-in-wordpress-april-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 May 2023 10:08: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14926\";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:374:\"With preparations for the next major releases already underway, the community is gearing up to celebrate WordPress’ 20th anniversary, which is just around the corner. This month has also seen some major highlights, such as WordPress 6.2’s performance wins and the launch of WP Translation Playground. Read on to find out what&#8217;s new. Forthcoming WordPress [&#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:\"Reyes Martínez\";s: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:15437:\"\n<p>With preparations for the next major releases already underway, the community is gearing up to celebrate WordPress’ 20th anniversary, which is just around the corner. This month has also seen some major highlights, such as WordPress 6.2’s performance wins and the launch of WP Translation Playground. Read on to find out what&#8217;s new.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Forthcoming WordPress releases</h2>\n\n\n\n<p>Following the successful release of <a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2</a> “Dolphy,” which has garnered over <a href=\"https://wordpress.org/download/counter/\">31 million downloads</a> (and counting), contributors across all teams are already planning future major releases, including versions 6.3 and 6.4.</p>\n\n\n\n<p>While WordPress 6.3 will focus on refinements to the site editing experience, <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\"><strong>6.4 will reprise the underrepresented gender release initiative</strong></a> introduced in WordPress 5.6 &#8220;Simone.&#8221; If you&#8217;re interested in contributing, now is the perfect time to get involved.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\">Check out the WordPress 6.3 proposed schedule and call for volunteers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WP20 is just around the corner</h2>\n\n\n\n<p><strong>Mark your calendars for May 27 and join the community for a day filled with exciting parties and activities!</strong></p>\n\n\n\n<p>With a refreshed look, the WP20 website offers a <a href=\"https://wp20.wordpress.net/\">list of events to join</a>, <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">swag to show your WordPress pride</a>, and <a href=\"https://wp20.wordpress.net/download-selfie-props-for-wp20-meetup-celebrations/\">downloadable “selfie props”</a> to add fun to your celebrations.</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/05/WP20-Tokyo-3.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Cake decorated with WordPress anniversary-themed motifs shared at a recent meetup in Tokyo, Japan.\" class=\"wp-image-14927\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Cake decorated with WordPress anniversary-themed motifs shared at a recent meetup in Japan.</em></figcaption></figure>\n\n\n\n<p>The Marketing Team has also launched <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\">#WP20 From Blogs to Blocks</a>, a community-focused initiative that encourages you to take a small daily WordPress-focused action for 20 days leading up to the anniversary date.</p>\n\n\n\n<p>On the other hand, details are being finalized for the 20th anniversary commemorative book, <a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-2023</a>. This volume will span the history and most meaningful moments of the last decade of WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/share-your-favorite-wordpress-swag-youve-collected-over-the-years/\">What’s your favorite WordPress swag</a>? Do you have a <a href=\"https://wp20.wordpress.net/whats-your-favorite-wordpress-moment/\">special memory from a WordCamp or meetup</a>? Share them with the community and join the #WP20 fun on social media.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2 performance</h2>\n\n\n\n<p>WordPress 6.2 reiterates the platform&#8217;s commitment to optimizing website performance with <a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">significant improvements</a>. <strong>Load times are 14 to 18% faster for block themes and 2 to 5% for classic themes</strong>. Server-side performance is also seeing a big boost, with an increase of 17 to 23% for block themes and 3 to 5% for classic themes.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">Learn more about the performance wins in 6.2</a>, including a retrospective from the Performance Core Team on the efforts that made it happen.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of the Gutenberg plugin have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\"><strong>Gutenberg 15.5</strong></a><strong> </strong>shipped on April 5, 2023, with many user-facing features to improve the creation experience. Enhancements include caption style customization, theme-defined template patterns when adding a new template, and experimental support for grid layouts in the Group block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/\"><strong>Gutenberg 15.6</strong></a> is available for download as of April 19, 2023. This version introduces an experimental Details block to expand and toggle the visibility of hidden content, and more presets for core block spacing and border controls, among other highlights.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: WP Translation Playground, WordPress.org redesign next steps, and more </h2>\n\n\n\n<ul>\n<li>The Polyglots Team launched <a href=\"https://make.wordpress.org/polyglots/2023/04/19/wp-translation-playground/\">WP Translation Playground</a>, an innovative tool that combines Local GlotPress with WordPress Playground to translate plugins and themes in context—without having to set up anything.</li>\n\n\n\n<li>Wondering what’s next in the WordPress.org redesign project? <a href=\"https://make.wordpress.org/meta/2023/04/10/wordpress-org-redesign-update-2/\">Learn about the latest updates and how to get involved</a>.</li>\n\n\n\n<li>This Community Team post discusses ways to <a href=\"https://make.wordpress.org/community/2023/04/19/cultivating-more-effective-contributing-on-contributor-days/\">make WordCamp Contributor Days more effective</a>.</li>\n\n\n\n<li>Explore <a href=\"https://make.wordpress.org/updates/2023/05/01/whats-new-on-learn-wordpress-in-april-2023/\">what&#8217;s new on Learn WordPress in April 2023</a>, including the latest content on the platform and the projects the Training Team has been working on.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> was used in a hackathon to prototype different ways to build plugins with minimal setup, right in the browser. <a href=\"https://make.wordpress.org/core/2023/04/13/in-browser-wordpress-tech-demos-wordpress-development-with-wordpress-playground/\">See it in action in these tech demos</a>.</li>\n\n\n\n<li>Members of the Marketing Team suggested improvements to submission guidelines to <a href=\"https://make.wordpress.org/marketing/2023/04/19/showcase-submission-guidelines/\">revitalize the WordPress.org Showcase</a>.</li>\n\n\n\n<li>Most of the work to refocus the WordPress mobile app on core features is complete. <a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Find out how to help shape its future</a> with contributions opportunities for developers, writers, translators, and more.</li>\n\n\n\n<li>Keep up with the latest enhancements and development updates you need to build on top of WordPress in last month&#8217;s edition of <a href=\"https://developer.wordpress.org/news/2023/04/whats-new-for-developers-april-2023/\">What’s new for developers?</a></li>\n\n\n\n<li>The latest issue of the <a href=\"https://make.wordpress.org/community/2023/04/20/meetup-organizer-newsletter-april-2023/\">Meetup Organizer Newsletter</a> shares tips and inspiring ideas to help you plan successful community events.</li>\n\n\n\n<li>Find out how WordPress and its global community of contributors positively impacted Monika Rao&#8217;s web career in <a href=\"https://wordpress.org/news/2023/04/people-of-wordpress-monika-rao/\">April&#8217;s edition of People of WordPress</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/04/episode-54-open-webs-bill-of-rights/\">Episode 54 of WP Briefing</a> as she explores the concept of the four freedoms of open source and their likeness to today’s Bill of Rights for the open web.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>The latest <a href=\"https://make.wordpress.org/test/2023/04/17/fse-program-testing-call-21-front-page-fun/\">Full Site Editing (FSE) Outreach Program testing opportunity</a> invites feedback on the features included in WordPress 6.2 and those remaining in Gutenberg Phase 2. Share your thoughts by May 8, 2023.</li>\n\n\n\n<li>This <a href=\"https://make.wordpress.org/core/2023/04/25/wp-feature-notifications-2023-status-update/\">update on the WP Feature Notifications project</a> explains the progress towards a modern WordPress user notification system and how you can get involved.</li>\n\n\n\n<li>Help test the latest version of the <a href=\"https://make.wordpress.org/core/2023/04/03/preferred-languages-help-test-the-latest-version/\">Preferred Languages feature plugin</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/19/mobile-team-update-april-19th-2/\">Version 22.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/05/02/lets-talk-wordpress-core-artificial-intelligence/\">This discussion post</a> welcomes ideas and questions about how Artificial Intelligence (AI) can be integrated into the WordPress experience.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>WordCamp Europe 2023 is fast approaching! The organizing team introduced the <a href=\"https://europe.wordcamp.org/2023/introducing-our-first-group-of-speakers/\">first confirmed speakers</a>.</li>\n\n\n\n<li>WordCamp US 2023 announced <a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">updates on the programming</a> for the upcoming event, for which <a href=\"https://us.wordcamp.org/2023/tickets-on-sale/\">tickets are now on sale</a>. Organizers are also <a href=\"https://us.wordcamp.org/2023/call-for-sponsors/\">calling for sponsors</a>.</li>\n\n\n\n<li>The 2023 Community Summit will provide a valuable opportunity for in-person discussions across contributor teams. <a href=\"https://communitysummit.wordcamp.org/2023/topics/\">Submit your topics</a> if you haven’t yet.</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://barcelona.wordcamp.org/2023/\">WordCamp Barcelona</a>, Spain on May 5-6, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://buffalo.wordcamp.org/2023/\">WordCamp Buffalo</a>, NY, USA on May 6, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f1.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a>, Poland on May 12-14, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1e9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet</a>, Bangladesh on May 19-20, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://lisboa.wordcamp.org/2023/\">WordCamp Lisboa</a>, Portugal on May 19-20, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f7-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://apatin.wordcamp.org/2023/\">WordCamp Apatin</a>, Serbia on May 27-28, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/organizing-diverse-inclusive-wordpress-events-apac-tickets-618469688487\">Organizing Diverse &amp; Inclusive WordPress Events APAC</a> on May 13, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/ninianepress/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ninianepress</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</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:\"14926\";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: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:31:\"People of WordPress: Monika Rao\";s:7:\"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://wordpress.org/news/2023/04/people-of-wordpress-monika-rao/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Apr 2023 21: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:5:{i:0;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:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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:3;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:4;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=14850\";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:91:\"People of WordPress features Monika Rao, a product and quality assurance manager in India. \";s: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:12829:\"\n<p><strong>This month we feature Monika Rao, a Product and Quality Assurance Manager from India. She finds contributing to the WordPress project a way to deepen her technical skills and further her web career.</strong></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-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/feature-img-monika.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Monika Rao at a WordCamp\" class=\"wp-image-14842\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/feature-img-monika.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2023/04/feature-img-monika.jpg?resize=300%2C186&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/04/feature-img-monika.jpg?resize=768%2C475&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Monika was born in Udaipur, in the state of Rajasthan, India. At that time, she recalls, there was some resistance to girls&#8217; education in certain subjects. Thanks to her parents&#8217; support and encouragement, she graduated in Computer Science Engineering. Following graduation, she went on to work for an international firm. However, she felt she wanted to work in her home area and so returned to work for a firm based in Udaipur itself.</p>\n\n\n\n<p>Monika started her career journey with WordPress in 2015, and was fascinated as she learnt more of the technology. A few years later, she moved into a&nbsp; role as a WordPress Quality Analyst, enabling her to dive further into the software. </p>\n\n\n\n<p>“From that moment, I decided to make it an integral part of my ever-learning professional career,” she said.</p>\n\n\n\n<p>The more Monika researched WordPress, the more she found it was not just a tool to simplify website building but also a platform where you could “meet new people, share your thoughts, learn from them and improve yourself through the process.”</p>\n\n\n\n<p>When she first started working with WordPress, she found she had many questions, ranging from what are themes and plugins to what is a WordCamp. As her knowledge grew, she knew one day she wanted to be able to contribute to both the code and the community supporting it.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Becoming part of WordPress</h2>\n\n\n\n<p>Monika started contributing to WordPress in 2015 with Theme Review. In this area, she was able to work alongside WordPress code experts and, at the same time, learn the concepts of theme development. She saw this as a great opportunity to learn and improve her development skills.&nbsp;</p>\n\n\n\n<p>She was also very interested in testing from the beginning, so she started contributing to Core. Her first contribution was to the WordPress 4.7 release in 2016. She remembers the day she first saw her name in the WordPress contributor list. This encouraged her to make more contributions including to core and the community team, and each time she felt more like part of the community.</p>\n\n\n\n<p>Thus inspired, Monika delved into making the software more easily available in her native Hindi language through joining other contributors to the Polyglots team. She went on to become a General Translation Editor for the Hindi language, and has continued to contribute in this area.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"902\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/wp-udaipur-2017.png?resize=902%2C600&#038;ssl=1\" alt=\"Monika as part of a panel at WordCamp Udaipur 2017\" class=\"wp-image-14846\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/wp-udaipur-2017.png?w=902&amp;ssl=1 902w, https://i0.wp.com/wordpress.org/news/files/2023/04/wp-udaipur-2017.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/04/wp-udaipur-2017.png?resize=768%2C511&amp;ssl=1 768w\" sizes=\"(max-width: 902px) 100vw, 902px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Monika and other panelists at WordCamp Udaipur 2017</figcaption></figure>\n\n\n\n<p>As she became involved with the WordPress community, she looked for ways of sharing it with others in her home city. In 2017 she was part of the organizing team for <a href=\"https://udaipur.wordcamp.org/2017\">WordCamp Udaipur 2017</a> and there shared her contributing journey with others. This was her first WordCamp, and she describes the experience as ‘superb’. It enabled her to connect to both those new to WordPress and those already working with it. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“It was a great moment for me speaking in front of hundreds of people and everyone cherished my journey. It inspired me to continue my contribution to other teams too.” </p>\n<cite>Monika Rao</cite></blockquote>\n\n\n\n<p>She went on to be an organizer for <a href=\"https://udaipur.wordcamp.org/2018/\" data-type=\"URL\" data-id=\"https://udaipur.wordcamp.org/2018/\">WordCamp Udaipur 2018</a> and <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a>. She also contributes to the Meta and Theme review teams. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress software releases</h2>\n\n\n\n<p>2019 was a big year for Monika. She got married and joined a new firm where she could work more on WordPress, learning about marketing and design.</p>\n\n\n\n<p>In November 2019, the WordPress Executive Director Josepha Haden put out a call for an all-women and non-binary release squad. Monika said: “I’ve always felt that not enough women take part in WordPress, so I decided to jump in.” She took on the role of Test Lead.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“It was a wonderful journey— worth every second and this was a proud moment for me when I saw my name on the WordPress Noteworthy list. You feel proud when you see your small contributions in use by 40 per cent of the web.”</p>\n<cite>Monika Rao</cite></blockquote>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"660\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/monika-5-6.jpg?resize=1024%2C660&#038;ssl=1\" alt=\"Some of the notable contributors for the WordPress 5.6 release\" class=\"wp-image-14849\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/monika-5-6.jpg?resize=1024%2C660&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/04/monika-5-6.jpg?resize=300%2C193&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/04/monika-5-6.jpg?resize=768%2C495&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/04/monika-5-6.jpg?w=1319&amp;ssl=1 1319w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Monika was part of the notable contributors for the WordPress 5.6 release</figcaption></figure>\n\n\n\n<p>As a Test Lead, her priority was ensuring the release would be stable and, more importantly, ready for production sites. To effectively manage all the testing, test scrubs were run weekly, highlighting the key testing areas to help get the entire team involved. The scrubs also played an important role in picking up tickets needing immediate resolution.<br><br>Monika also continued her role in the WordPress 5.7 release, and focused more on the core software. She believes being part of the Core and Test teams is a good way to watch and learn, as well as take part in the different elements that make up a release.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>“Skills you have will eventually fade away unless you work on them and sharpen them. So don’t underestimate the value of any skill. It will eventually help you somehow in your career.”</p>\n<cite>Monika Rao</cite></blockquote>\n\n\n\n<p>She added: &#8220;I owe my skills and knowledge to WordPress and its lovely community. The best part about this platform is that it is free and provides ample opportunities to improve your skills and build a career. The wider WordPress community is highly supportive, and it provides numerous additional resources, such as online forums, tutorials, and meetups, to help people learn and grow. With the help of WordPress, anyone can learn how to create websites, develop plugins, and contribute to the community.&#8221;</p>\n\n\n\n<p>This route for learning has helped Monika in choosing the direction of her career and in keeping her skills up-to-date. In October 2021, she joined a company specializing in producing WordPress plugins and services for online businesses.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Everyone can contribute to WordPress</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/04/monika-on-holiday2.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Monika pictured during her travels\" class=\"wp-image-14845\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/monika-on-holiday2.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/04/monika-on-holiday2.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Monika pictured during her travels</figcaption></figure>\n\n\n\n<p class=\"has-text-align-left\">Monika is determined more people, especially other women, have opportunities to contribute to open source in general. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-text-align-left\">&#8220;Many people are using WordPress, but they don’t all know about contribution. Therefore, my future goal is to help people, especially women, contribute more to WordPress.”</p>\n<cite>Monika Rao</cite></blockquote>\n\n\n\n<p class=\"has-text-align-left\">&#8220;When I first started contributing to WordPress, I thought that being from a testing background, I may not be able to contribute much. However, I soon realized that there are various different areas where I could easily contribute and develop my skills,&#8221; said Monika.</p>\n\n\n\n<p class=\"has-text-align-left\">&#8220;So, I would encourage anyone who is interested in contributing to WordPress to find their own area of interest, regardless of their background, be it marketing, content writing, designing, or any other field. The WordPress community welcomes contributions from people of all backgrounds and skill-sets. So, don&#8217;t hesitate to dive in and contribute in a way that suits your interests and skills.&#8221;</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&nbsp;<a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Monika Rao (<a href=\"https://profiles.wordpress.org/monikarao/\">@monikarao</a>) for sharing her adventures in open source.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>) for interviews and writing this feature, and to Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>) for work on photographs and review.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;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\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\";s: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:\"14850\";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: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:58:\"WP Briefing: Episode 54: A Bill of Rights for the Open Web\";s:7:\"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/04/episode-54-open-webs-bill-of-rights/\";s: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 Apr 2023 13:55:06 +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=14836\";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:225:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 54th episode of the WordPress Briefing as she explores the concept of the four freedoms of open source and likens it to today\'s Bill of Rights for the open web.\";s: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/04/WP-Briefing-054.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: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:9150:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 54th episode of the WordPress Briefing as she explores the concept of the four freedoms of open source and likens it to today&#8217;s Bill of Rights for the open web.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <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>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</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://wordpress.org/news/2021/02/wordpress-is-freedom/\">Episode 2: WordPress is Free(dom)</a></li>\n\n\n\n<li><a href=\"https://openai.com/blog/chatgpt\">OpenAI ChatGPT</a> and <a href=\"https://github.com/features/copilot/\">Github Copilot</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\">WordPress 6.3 Planning Proposal &amp; Call for Volunteers</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qS9\">Preparing for the Next Underrepresented Gender-Led Release &#8211; WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/\">WP20 — Celebrating 20 years of WordPress</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14836\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>Hello, everyone! And welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open<strong> </strong>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.&nbsp;</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:00:40] Start of Show</p>\n\n\n\n<p>Just over 50 episodes ago, I shared some basic thoughts about the four freedoms of open source. I also talked through the most quoted phrase in open source&nbsp; “free as in free speech, not free as in beer.” And honestly, what podcast about the freedoms of open source would be complete without that? If you haven&#8217;t listened to that episode, I suggest you do, but if you don&#8217;t have time, I&#8217;ll start by reminding us all of the definition of free software, which is most commonly referred to as the four freedoms of open source.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:12]</p>\n\n\n\n<p>So the first thing is the freedom to run the program as you wish for any purpose. The second thing is the freedom to study how the program works and to change it so that it does your computing as you wish. As a side note, access to the source code is a precondition for this.&nbsp;</p>\n\n\n\n<p>The third freedom is the freedom to redistribute copies so that you can help others. And the fourth freedom is the freedom to distribute copies of your modified versions to others. By doing this, you can give the whole community a chance to benefit from your changes, and of course, also access to the source code is a precondition for this.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:47]</p>\n\n\n\n<p>The TLDR version of these freedoms is, essentially, that users have the freedom to run, copy, distribute, study, change, and improve the software. Now, normally when I speak about the freedoms of open source, I&#8217;m talking about it either from a practical or a philosophical standpoint, but I also spend a lot of time thinking about it from a leadership and organizational perspective.</p>\n\n\n\n<p>Every once in a while, you might hear me talk about the effects of “open source at scale,” or you might hear Matt say that the four freedoms are essentially the “Bill of Rghts for the open web.” I almost never really dig into either of those topics because it&#8217;s just really complicated. But for starters, anytime you talk about what someone is entitled to or deserves or expects, there is a feeling of political bias.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:40]</p>\n\n\n\n<p>And while I personally believe that creating software is inherently political or, at a minimum, concerned with the needs of people, that&#8217;s not what convinces anyone to participate in open source, and it&#8217;s certainly not what convinces people to use WordPress. But here&#8217;s the thing, as a leader in a widely used, free, and open source software project, as a leader in WordPress, I also know that every new user to our platform or any other open source platform represents a little more freedom in the world.</p>\n\n\n\n<p>A little more access to tools and jobs that weren&#8217;t available before. A slightly more open door to networks that undergird the success of entrepreneurs across the globe and a little more equity to the world of democratizing publishing.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:28]</p>\n\n\n\n<p>When I look at the four freedoms of open source, this Bill of Rights for the Web, I see not only the freedoms that we should have but also the things that we should have freedom from.&nbsp;</p>\n\n\n\n<p>We should have the freedom to know how our tools work, the freedom to know what information they need from us, and also the freedom to have some way to make that software work specifically for us because that&#8217;s why we have software because we have humans that need it. But we should also have freedom from having to hide our hacky enhancements or freedom from fear of losing our earned audience, or even the fear of losing access to copious amounts of content that we have created ourselves over the years.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:13]</p>\n\n\n\n<p>And honestly, the things that we should be free from just include a lot of fear of loss. Loss of opportunity or relevance or livelihood. And I feel like for our project, and maybe for open source as a whole, we&#8217;re encountering a lot of that right now, whether we are aware of it or not. We&#8217;re seeing advancements like GPT3 or ChatGPT if that sounds more familiar and co-pilot.</p>\n\n\n\n<p>And while it&#8217;s not quite in the same vein, also things like Gutenberg. Advancements that are coming to technology around us, technology we&#8217;re familiar with. And it&#8217;s hard to see what&#8217;s in them sometimes. It&#8217;s hard to see what drives them. It&#8217;s hard to know how we can make them work for us. So I have to remind us all, as citizens of an open source community, that what protects us from those things we should be free from is directly connected to how active we are in the things we are free to.&nbsp;</p>\n\n\n\n<p>We hear that in a slightly more routine way from folks around open source communities. Basically, the whole concept of open source software is being built by the folks who show up. You can&#8217;t influence the future of anything if you&#8217;re not showing up in the spaces where the influence happens.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:35]</p>\n\n\n\n<p>So be an active participant in these new technologies. Learn how GPT works and how it could work for you, even if it&#8217;s just writing better prompts. Learn how Gutenberg can support your needs, not subvert your needs, even if it&#8217;s just learning how to arrange a series of blocks into a pattern or patterns into a page.</p>\n\n\n\n<p>But as with all fast-moving technological advances, I encourage you to leap in feet first, not head first. Get in up to your neck in the &#8220;why&#8221;s and &#8220;how&#8221;s of that new technology you&#8217;ve been worrying about. Be the first to become best at this arcane new thing because that&#8217;s why we open source at all so that you have the freedom to run, copy, distribute, study, change, and improve your software.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:33] Small List of Big Things</p>\n\n\n\n<p>That brings me now to my small list of big things. It&#8217;s a very small list, but it is very big, as always. The first thing is that we are gearing up for the remaining major releases of the year, WP 6.3 and 6.4 in an atypical moment for our project. You can volunteer for both simultaneously if you want, and hopefully, you do want.</p>\n\n\n\n<p>Second thing is that there are many ways to celebrate WordPress&#8217;s 20th anniversary on May 27th. But one of the things you can do right now is record a short video or sound clip about a great memory or experience you have had in this community or just generally because of WordPress. Those will be featured on the WP 20 website, and maybe even a lucky few will make it into the second volume of the WordPress history book.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.&nbsp;</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:\"14836\";s: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:\"Thu, 01 Jun 2023 05:49:52 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:\"Thu, 01 Jun 2023 01:00:55 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 1\";}}s:5:\"build\";s:14:\"20230529085130\";}','no'),(327,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1685641793','no'),(328,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1685598593','no'),(329,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1685641794','no'),(330,'_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:56:\"WordPress.org blog: People of WordPress: Stefano Cassone\";s:7:\"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=15030\";s:7:\"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/05/people-of-wordpress-stefano-cassone/\";s: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:13126:\"<p><strong>With <a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a> in June, we feature Stefano Cassone, a web designer, photographer and volunteer translator, who believes his life has been transformed through WordPress and its community.</strong></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=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&ssl=1\" alt=\"Stefano with a laptop covered in WordPress event stickers\" class=\"wp-image-15027\" />Stefano with a laptop covered in WordPress event stickers\n\n\n\n<p>Stefano has always been fascinated by the internet. His initial learning in the 1990s was through joining friends at a local pub where they could explore how websites were structured and learn to use chat software.</p>\n\n\n\n<p>This led to Stefano creating websites for fun in 1998, and his first paid job was for the shop where he bought comics. He turned to content management systems (CMS) to speed up the creation process for sites, but found he needed more documentation to really understand their capabilities. Then he read a magazine article about WordPress, a CMS which was being used to make incredible blog sites, and was supported by an international community and documentation. Over time, Stefano started using that documentation to work on websites in Italian.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress provides a life-changing turning point&nbsp;</h2>\n\n\n\n<p>Stefano describes himself as an introvert. He found that WordPress helped him to work from home, to develop his skills and the quality of what he could produce, as well as build his self-confidence.&nbsp;</p>\n\n\n\n<p>A catalyst for the turning point in his life and career was the discovery of an area for events on the WordPress dashboard. On this page, he found a forthcoming local meetup in Rome.&nbsp;</p>\n\n\n\n<p>In November 2017, Stefano took the step to go along to this event, led by a curiosity of what he might discover and intrigued by how a software could be supported by a vast community. The topic at the event was on <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>, a command line interface for WordPress. He recalled that he felt outside his comfort zone as he did not regard himself as a developer and at that point, had only used the software for simple jobs. He wondered whether using the software as his only CMS was going to be a long term option and if these meetups were suitable for him.</p>\n\n\n\n<p>At the meetup, people were talking about a forthcoming event, called WordCamp Rome. Through his research, he saw that there was a lot of enthusiasm for this event. This intrigued him and he wondered if it would show him that he could have a career using the software after all.</p>\n\n\n\n<p>Unfamiliar with WordCamps, Stefano found it difficult at first to know what he could go to and how to get involved, but he persevered and attended the event.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;The WordCamp was a great discovery: talks at all levels from basic to those for developers, advanced and very advanced. I was immediately struck by the enthusiasm of the volunteers. It was an environment where I felt very comfortable, so much so, that I asked myself how I could participate in some WordCamps.&#8221;</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<p>From this event, Stefano was encouraged by those he met to consider applying as a volunteer for a future WordCamp.</p>\n\n\n\n<p>There was also much talk at the event about ‘Slack’. It was new to Stefano, but with help from those attending, he signed up for the messaging tool Slack, used by the WordPress community. He was still unsure how he could contribute, and if he would be welcome.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Joining thousands of volunteer translators of WordPress</h3>\n\n\n\n<img width=\"800\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=800%2C600&ssl=1\" alt=\"Italian General Translation Editors at WordPress Italia 2022\" class=\"wp-image-15028\" />Italian General Translation Editors at WordPress Italia 2022\n\n\n\n<p>Stefano took the plunge and was excited to find there was a team called Polyglots. In this team, people from across the world<a href=\"https://make.wordpress.org/polyglots/\"> translate the WordPress software into many different languages</a>. He started with translating a theme he was using in his work. Little by little he became more interested in plugins and attended meetings with other translators. He offered his skills to translate into Italian themes and plugins in general and as his experience grew, he took on the volunteer role of a General Translation Editor. He also took care of the translation into Italian of the WordPress Core. More recently he has joined the group of translators for the <a href=\"https://make.wordpress.org/docs/handbook/helphub/\">HelpHub</a>, which is part of the <a href=\"https://make.wordpress.org/docs/\">WordPress documentation</a> system.</p>\n\n\n\n<p>He said: “Participating in the WordPress Slack has helped me enormously: I’ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n\n\n\n<p>“It&#8217;s a great way to contribute to WordPress, especially for someone like me who is not a developer. Translating also allows me to fully understand how WordPress works.&#8221; </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I always say that translating themes, plugins, and the Core software is the best way to learn WordPress, better than any course or book.”</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">Sharing skills to support Open Source WordPress</h3>\n\n\n\n<img width=\"667\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=667%2C500&ssl=1\" alt=\"Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\" class=\"wp-image-15026\" />Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\n\n\n\n<p>Stefano’s growing commitment to the open source WordPress project was further boosted through his volunteering. He was a volunteer at WordCamp Rome 2018 and participated there in his first Contributor Day where he had the opportunity to translate the software with others.&nbsp;</p>\n\n\n\n<p>He was also able to bring his own hobbies and skills to help the project grow and reach others. One example was his passion for photography, and he volunteered as a photographer for many other events in Italy organized by the WordPress community. He said: “This commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.” The more WordCamps he attended, the more he wanted to be part of and keep contributing to the wider WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contribution to WordPress is inspiring</h2>\n\n\n\n<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&ssl=1\" alt=\"Stefano at the Support Table at a WordPress Contributor Day\" class=\"wp-image-15025\" />Stefano at the Support Table at a WordPress Contributor Day\n\n\n\n<p>When Stefano was asked to become an organizer for the WordPress meetup in Rome in October 2019, he knew he wanted to be part of reaching and supporting more people in his area. He faced challenges with finding venues, but a greater issue was to come: the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>Spurred on by the <a href=\"https://it.wordpress.org/\">Italian WordPress community</a> as a whole, he was determined that the meetup was still needed. The regular event was transformed into an online meeting. He was able to gain help from people he had met as a volunteer to share their expertise with meetup attendees.&nbsp;</p>\n\n\n\n<p>The community in Italy also worked together to put on WordCamp Italia online. It brought together the organizers of previous meetups and WordCamps, and new contributors too. Stefano volunteered in both online editions of this camp, including being part of the social and communication team. He found it to not only be a fun experience but also one that helped him grow professionally and learn from so many others.</p>\n\n\n\n<p>He went onto help restart the <a href=\"https://www.meetup.com/romawordpress/\">Rome WordPress meetup</a> in-person meetings in May 2022, was an organizer for the third WordCamp Italy, and has been volunteering for camps in 2023.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What will WordPress bring you?</h3>\n\n\n\n<img width=\"533\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=533%2C800&ssl=1\" alt=\"Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\" class=\"wp-image-15024\" />Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\n\n\n\n<p>“Persona and professional growth and friendship” are some of the things they have brought Stefano. Contributing boosted his confidence and willingness to try new opportunities in his work.&nbsp;</p>\n\n\n\n<p>He said: “The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn. With WordPress you never stop learning.”</p>\n\n\n\n<p>His top recommendation is: “Join your local meetup or think about organizing one, it will introduce you to an amazing world. Don’t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don’t worry. The WordPress community is inclusive so you’ll always feel welcome, and you will see enthusiasm like you’ve never seen at other IT events. Sign-up and get involved.”</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<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Stefano Cassone (<a href=\"https://profiles.wordpress.org/deadpool76/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>deadpool76</a>)&nbsp;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/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>) and Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>) for interviews, writing the feature and collaborating on images, to Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>), Mark Smallman (<a href=\"https://profiles.wordpress.org/marks99/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marks99</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>), Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a>), and Maja Loncar (<a href=\"https://profiles.wordpress.org/majaloncar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>majaloncar</a>) for help with reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>) for their support.</p>\n\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>\";s: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, 31 May 2023 20:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:85:\"Post Status: WP 6.3 Planning • WP20 • AI Forum Replies • LearnWP Survey Results\";s:7:\"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=149526\";s:7:\"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://poststatus.com/wp-6-3-planning-wp20-ai-forum-replies-learnwp-survey-results/\";s: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:19171:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 29, 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\">How did you celebrate WordPress&#8217;s 20th birthday? Read Building Blocks: The Evolution of WordPress, now available on GitHub and e-reader formats. <br /><br />WordPress 6.3 is underway. Core has shared the planning roundup, and the Design team is starting to prepare now.  <br /><br />Support forums recently discussed considerations on using AI to respond to forum issues. Human intervention is still necessary for the foreseeable future. <br /><br />Training team surveyed attendees at the last 3 flagship WordCamps and any additional respondents.  The data is in with feedback on the content and site functionality of Learn.WordPress.org. </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_userPlus kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.3, WP20, AI forum replies, and LearnWP Survey Results</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4d4.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f916.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/support/2023/05/suggested-stance-on-the-use-of-ai-tooling/\">Suggested stance on the use of AI-tooling</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"??‍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/05/30/analysis-of-the-individual-learner-survey-results/\">Analysis of the Individual Learner Survey results</a><br /><br /></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/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/celebrate-20-years-of-wordpress-by-exploring-the-20-year-written-history-of-the-project/\">Celebrate 20 Years of WordPress by Exploring the 20-Year Written History of the Project</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/download-3d-wp20-themed-media/\">Download 3D WP20-Themed&nbsp;Media</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-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/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\"><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/05/31/accessibility-team-meeting-agenda-june-2-2023/\">Accessibility Team Meeting Agenda: June 2, 2023</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/05/26/notes-of-community-team-discussion-on-may-25-2023/\">Notes of Community Team Discussion on May 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/24/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-may-24-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on May 24, 2023</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/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</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</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/05/customizing-core-block-style-variations-via-theme-json/\">Customizing core block style variations via theme.json</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/05/31/dev-chat-agenda-may-31-2022/\">Dev Chat agenda, May 31, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/30/editor-chat-agenda-31-may-2023/\">Editor Chat Agenda: 31st May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/27/editor-chat-summary-24-may-2023/\">Editor chat summary: 24 May, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\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</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/05/29/documentation-team-update-may-29-2023/\">Documentation Team Update – May 29, 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/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/27/day-20-wp20-from-blogs-to-blocks/\">Day 20: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/26/day-19-wp20-from-blogs-to-blocks/\">Day 19: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/25/day-18-wp20-from-blogs-to-blocks/\">Day 18: #WP20 From Blogs to Blocks</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/05/31/agenda-biweekly-matrix-chat-thu-june-1-2023-10am-utc/\">Agenda: Biweekly Matrix Chat – Thu, June 1, 2023 (10AM UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/05/31/two-factor-auth-available-to-test-on-wordpress-org/\">Two-Factor Auth available to test on WordPress.org</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/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</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/05/29/last-week-openverse-2023-05-22-2023-05-29/\">A week in Openverse: 2023-05-22 – 2023-05-29</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/24/community-meeting-recap-2023-05-22/\">Community Meeting Recap (2023-05-22)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/23/openverse-monthly-priorities-meeting-2023-06-07/\">Openverse Monthly Priorities Meeting 2023-06-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/22/last-week-openverse-2023-05-15-2023-05-22/\">A week in Openverse: 2023-05-15 – 2023-05-22</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/05/30/performance-chat-summary-30-may-2023/\">Performance Chat Summary: 30 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/core-performance-team-update-may-2023/\">Core Performance Team Update: May 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p></p>\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/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n</ul>\n\n\n\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/05/31/improving-translation-suggestions-other-languages/\">Improving Translation Suggestions [Other Languages]</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/31/agenda-weekly-polyglots-chat-may-31-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – May 31, 2023 (07:00 UTC)</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/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">Proposal: establishment of a formal WordPress Sustainability Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</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/05/suggested-stance-on-the-use-of-ai-tooling/\">Suggested stance on the use of AI-tooling</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/05/agenda-for-may-18th-support-meeting-2/\">Agenda for May 18th Support Meeting</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/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/29/test-team-update-29-may-2023/\">Test Team Update: 29 May 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/05/31/themes-team-meeting-notes-may-30-2023/\">Themes Team Meeting Notes – May 30, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/26/summary-curating-the-editor-and-building-block-themes-for-clients/\">Summary: Curating the Editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/30/themes-team-update-may-30-2023/\">Themes team update May 30, 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/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/24/training-team-meeting-recap-for-may-23rd-2023/\">Training Team Meeting Recap for May 23rd, 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/managing-a-wordpress-multisite-network/\">Managing a WordPress Multisite Network</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=live-stream-creating-a-block-theme-for-developers-part-3\">Live stream: Creating a block theme for developers. Part 3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-wordcamp-eu-contributor-day-online-session\">Training Team WordCamp EU Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-row-and-stack-blocks\">Using the row and stack blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=nesting-blocks-and-advanced-block-layouts-2\">Nesting blocks and advanced block layouts</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-4\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-coding-standards\">WordPress Coding Standards</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=custom-css-in-the-site-editing-era\">Custom CSS in the Site-Editing Era</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%A2%E3%83%83%E3%83%97%E3%83%87%E3%83%BC%E3%83%88%E3%81%A8%E8%84%86%E5%BC%B1%E6%80%A7\">アップデートと脆弱性</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/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</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\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-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</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:\"Wed, 31 May 2023 16:48: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:\"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: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:67:\"WPTavern: #78 – Mike McAlister on Why Block Themes Are the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=145590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/podcast/78-mike-mcalister-on-why-block-themes-are-the-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55259:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: 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, a journey inside creating a block-based theme.</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 all 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>We released these podcast episodes every Wednesday, but next week there&#8217;s going to be a break. I&#8217;m going to be heading to WordCamp Europe in Athens to record some more interviews. And if you&#8217;re there, I do hope that our paths cross. Normal service will resume soon.</p>\n\n\n\n<p>So on the podcast today we have Mike McAlister, and he&#8217;s here to talk about his experiences creating a block-based theme.</p>\n\n\n\n<p>Mike is a veteran product developer and designer in the WordPress space. He founded and sold multiple WordPress products, like Array Themes and Atomic Blocks. Now he&#8217;s focused on the future of WordPress with his new product brand, Ollie.</p>\n\n\n\n<p>Mike kicks off the podcast by telling us about his WordPress journey, and how WordPress blocks have renewed his passion for the platform. We get into some history and talk about the era when WordPress themes were extremely popular. Marketplaces like in Envato made it possible to sell themes and creates a career in ways hitherto unimagined.</p>\n\n\n\n<p>Mike explains what the key differences are between a block-based theme and a classic theme. How it&#8217;s possible to create themes inside the editor and how you can do this without needing to know much code.</p>\n\n\n\n<p>We talk about the fact that, if you are a coding expert, you could always create complex themes, but this fresh approach opens up the possibilities for those with less technical backgrounds. The experience in the editor might not be exactly what everyone wants, but it&#8217;s evolving quickly and maturing with every new release of WordPress.</p>\n\n\n\n<p>The conversation moves onto why Mike is so confident that block-based themes are going to succeed. You don&#8217;t need to use one, and your trustee classic theme and the associated customizer, will work for the foreseeable future.</p>\n\n\n\n<p>We then turn our attention to the technical hurdles that Mike has had to overcome. What new workflows and tools did he need to adopt and master to make his work possible? Mike&#8217;s been really focused on using WordPress core blocks to create his themes, digging into the weeds of what they can do and what their limitations are. It&#8217;s been a part of steady learning punctuated with minor setbacks when the editor and blocks are updated in unexpected ways. Thankfully, these bumps in the road are now relics of the past, as breaking changes have given way to stability.</p>\n\n\n\n<p>We then talk about a specific theme that Mike has just released. It&#8217;s called Ollie, and it&#8217;s the focus of the rest of the podcast. How did Mike build Ollie, and what is he hoping to achieve with this new brand?</p>\n\n\n\n<p>Patterns feature heavily in Ollie we talk about how it&#8217;s possible to alter the look and feel of your site quickly. Typography and colors are easy to change with the new suite of design tools which ship with WordPress.</p>\n\n\n\n<p>If you&#8217;re wanting to develop block-based themes, or are just curious about how other developers are building them, this podcast 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 of the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Mike McAlister.</p>\n\n\n\n<p>I am joined on the podcast today by Mike McAlister. Hello, Mike.</p>\n\n\n\n<p>[00:04:51] Mike McAlister: Hello. Thanks for having me.</p>\n\n\n\n<p>[00:04:52] Nathan Wrigley: Yeah, you&#8217;re very welcome. Mike is going to be talking to us today about block based themes, block patterns, blocks in general, I&#8217;m sure. And if you haven&#8217;t been in the WordPress space for any great length of time, you are about to learn about Mike&#8217;s pretty impressive history in the WordPress space.</p>\n\n\n\n<p>So Mike, it&#8217;s a fairly generic question, but I hope you don&#8217;t mind us asking you at first, just to orientate the listeners. Would you mind just telling us a little bit about yourself and your history, coding, theming, and whatever kind of other work you&#8217;ve done in the WordPress space.</p>\n\n\n\n<p>[00:05:24] Mike McAlister: Absolutely. Yeah, I&#8217;ve been around WordPress for some time now, probably since about 2010. 2009, 2010. So fairly early on. And I think I came upon WordPress like many folks, building client sites and looking for just a better way to do it. You know, when you&#8217;re in that world and you stumble upon WordPress, you&#8217;re like, whoa, light bulb moment. This is going to be a game changer.</p>\n\n\n\n<p>So yeah, I started pretty early on using WordPress to build websites for clients. And then at some point, I started to see the commercial aspect of it, right? Instead of building one theme for one client, I could build one theme and maybe sell it to a thousand different clients.</p>\n\n\n\n<p>And so I experimented pretty early on with, you know, I have a history in design and so that was my focus. I thought that could be a differentiator for me. I&#8217;ll make themes that are just beautifully crafted, really lightweight. Maybe they don&#8217;t do everything under the hood, but they do specific things very well.</p>\n\n\n\n<p>And so Array was the first theme shop that I had. And I operated all over the place. I had themes on my own site. I had them on the Themeforest marketplaces. I was selling themes on wordpress.com. So I was kind of everywhere and growing. And then at one point blocks became a thing, and so I dipped into there and started experimenting with blocks, via the Atomic Blocks theme which grew really quickly, it was one of the first block themes out there. And I think it was, blocks were still a really new thing and people were trying to understand what they were and what the benefits could be.</p>\n\n\n\n<p>And so having a plugin out there with all these examples in it, and kind of showing that, oh no, you can replace all kinds of stuff. Like short codes and all of these other archaic ways of building could be done with blocks now.</p>\n\n\n\n<p>So I worked on that for a bit. And then in 2018 WP Engine acquired both the theme shop and the Atomic Blocks plugin. And worked there for four and a half years, and then just recently I have gone back into the freelance and entrepreneurial space.</p>\n\n\n\n<p>[00:07:21] Nathan Wrigley: Thank you very much indeed. That&#8217;s really, really interesting and it sounds to me at least anyway, as if you arrived on the WordPress scene, not only with the right products, but also at the right time. You kind of managed to hit that tidal wave just as it was creating out in the ocean somewhere.</p>\n\n\n\n<p>And you had the product. Everybody was buying themes at that time. Became really, really popular. Do you consider yourself to have had a lucky break there, in the sense that, do you feel that that is something which can be repeated in the year 2023? Or do you think that block themes and just themes in general, the shine and the commercial prospects of that has dwindled a little bit?</p>\n\n\n\n<p>[00:08:04] Mike McAlister: That early era was certainly something special. I think there was just so much attention focused on themes, and as this new shiny thing. And they unlocked a lot of capabilities for people. They were able to go from, trying to make their own sites. To making their own designs. To having these tried and tested templates.</p>\n\n\n\n<p>And so that was a huge thing. And the rise of the Envato market at the time was a huge part of that success. Love it or hate it, at the time, that was a huge thing and proliferated WordPress themes out into the world, beyond our bubble. And so that I think was a huge deal at the time.</p>\n\n\n\n<p>Now, whether or not now we can kind of replicate that is really tough to say, because since then the market has become quite saturated, in that there are so many different ways of building with WordPress. And you have things that are spinning off like Elementor going off into their own world.</p>\n\n\n\n<p>They&#8217;re still kind of one foot in WordPress, one foot out. And we have all of these other. website builders that we didn&#8217;t have back then, other platforms. So there&#8217;s just so many different ways to build a website. WordPress is still massively popular, even if it&#8217;s slowly declining.</p>\n\n\n\n<p>We still have such a huge footprint on the web that it, there&#8217;s a ton of potential So, I don&#8217;t think we&#8217;ll see the same wave we saw before. I do think though that this whole new world of the block paradigm and block themes. It is the biggest opportunity commercially in WordPress I think that we&#8217;ve seen in a very long time. It may be the biggest we see for a long time.</p>\n\n\n\n<p>[00:09:38] Nathan Wrigley: Yeah. I think we should probably stray into that right, the outset, if that&#8217;s okay. Because, there&#8217;s probably a proportion of people who are listening to this podcast who are very, very technical. They completely get what you mean by block based themes and the opportunity afforded there.</p>\n\n\n\n<p>But equally, there may be a bunch of people who are listening to this who genuinely have no idea that there is such a thing as a block based theme. They&#8217;ve got a, what we would now call a classic theme, and it&#8217;s installed and it has been for a long time. And as far as they&#8217;re aware, there&#8217;s no change in their WordPress website. Things just carry on as normal.</p>\n\n\n\n<p>But are you able to describe to us, I know this is a difficult question, and certainly trying to cram it into a portion of a WordPress podcast is a big ask. But are you able to give us a high level view on what a block theme is, and how it differs from a classic theme? Something which you might know, if you&#8217;ve got access to the customizer, you have a classic theme. If you don&#8217;t, you don&#8217;t. And so let&#8217;s take it from there. What are they and what do they promise?</p>\n\n\n\n<p>[00:10:34] Mike McAlister: Absolutely. So, let&#8217;s first just do quick block refresher in general. So blocks, instead of throwing your content all into TinyMCE or the content area, and kind of making it mostly text-based, and throwing some other little elements in with things like short codes, like we used to do in the past. Blocks, they&#8217;re basically content elements. It could be anything from a button, to a paragraph, to an image gallery, to a slider.</p>\n\n\n\n<p>And all of these things you add to the WordPress editor. And they could be used to build, you know, more beautiful content. They could be used to build page sections. They can be used to build a full page. And you put together enough blocks, and you can build an entire theme with it, right? So, WordPress comes with many blocks built in. And all of these things you use to build your website now.</p>\n\n\n\n<p>So with that in mind, block themes are effectively entire WordPress themes that are built entirely with blocks. And the benefit of that is that it makes your website almost entirely editable by you, in the editor. So instead of having to, you know, if you want to change your header, instead of going into the code and opening up the code editor and tinkering there and saving and going back to your site. You can go into the site editor and WordPress, which is effectively a interface inside the WordPress admin, where you can create your header.</p>\n\n\n\n<p>You can modify it. You can change the colors. You can add new links. You can change out your site logo. And all of that happens in the editor. It can be a no-code or low-code experience for you. So the benefit here is the customization, right? We can now get closer to the experience that you might have seen at something like a Squarespace or Wix where the interface and the experience is tailored around creation, and it&#8217;s more focused around that.</p>\n\n\n\n<p>[00:12:31] Nathan Wrigley: Yeah, I guess if you are an expert themer and you&#8217;ve been creating themes for years, what it brings to the table, the way that you construct them is different. But you&#8217;ve always been able to achieve whatever it is that you wanted to achieve because you could write the code. But I suppose what this is bringing is the capability for non-technical people to be able to modify just any part of the site.</p>\n\n\n\n<p>I guess the header is typically fairly constrained, you know, header, navigation, logo, that kind of thing is normally what we see. But perhaps a better example would be a footer. Because typically your footer would be controlled by the theme and you&#8217;d go into the customizer and modify whatever options were available to you.</p>\n\n\n\n<p>Whereas now you can just build out rows, columns, put in images, put in contact forms, whatever you like, other navigation menus, anything. If you can imagine it as something that you can build in the block editor, that can then become your footer. You don&#8217;t need to dabble in any code at all. There&#8217;s a lot going on there, but you don&#8217;t need to be involved in that.</p>\n\n\n\n<p>And so non-technical people can become involved in that process and, you know, enjoy creating different aspects, different parts of their theme. That being said, what are your thoughts on the state of the UI for editing themes at the moment? We&#8217;re in May 2023. Version 6.2 of WordPress is the current latest version.</p>\n\n\n\n<p>And I think it&#8217;s fair to say that it&#8217;s not where it probably wants to be in the end, but how do you think about it? How do you think about the UI? You&#8217;ve probably been in there, you&#8217;ve ironed out all the kinks, and got over all the road bumps that were in the way. But for a typical user, a non-technical user, do you feel it&#8217;s delivered on the promise that it hoped to?</p>\n\n\n\n<p>[00:14:09] Mike McAlister: I don&#8217;t think so yet. I talked to all kinds of WordPress users from novices to veterans. And the number one thing that always comes up is the UI the UX, the experience. And, you know, I get it because we&#8217;ve known WordPress for 20 years now. We&#8217;re celebrating a 20 year anniversary right now.</p>\n\n\n\n<p>And it has been one way for a very long time. And even some of the big changes that came, like the customizer, they weren&#8217;t that big of a change, right? They were bolted on and they were additive and iterative. But the block editor and going into the site editor and full site editing, these kinds of things, it&#8217;s quite different.</p>\n\n\n\n<p>It&#8217;s adding a lot to WordPress. It&#8217;s a lot of new context. It&#8217;s a lot of new paradigms. It&#8217;s a lot of new workflows, and I think that is a very difficult thing for people to figure out. Especially with the past few years where things have been shifting so much and people don&#8217;t know quite when to hop in. And then when they do, it doesn&#8217;t work exactly like they had anticipated.</p>\n\n\n\n<p>Or some of the features are released as working prototypes. We&#8217;re kind of met with these things. And so I get the frustration when you hop in there and somebody&#8217;s telling you, oh, it&#8217;s way better, and you can do all this stuff now, and you&#8217;re, you install a block theme from dot org and it&#8217;s like half busted, and the styles don&#8217;t work and you don&#8217;t know your way around. So I get it. It can be a very frustrating experience.</p>\n\n\n\n<p>I will say the past few releases I think have been a lot better. And they&#8217;re ironing out a lot of the kinks. The ground underneath the software isn&#8217;t moving as much from release to release. And if you follow along on some of the GitHub tickets or you stumble into some of those, there&#8217;s a great deal of discussion going on about the many shortcomings of the UX. And so it is something that&#8217;s always being worked on. And I think it&#8217;s important to just remember that.</p>\n\n\n\n<p>It is never going to be easy to change, to drastically change, a piece of software that is being used for so many use cases, for so many people. We know it powers half the web and to make a leap into the block era like this, it was never going to be easy. It was never going to be comfortable.</p>\n\n\n\n<p>We hope that it will be worth it in that, these kind of growing pains in this transition will give us a new era. It will refresh WordPress. It will make it viable for another 10, 20 years. It will give us the new tools to keep up with these other platforms that are maybe outperforming us. And so while the growing pains are there and the experience is a little rough, I do think that it is all for the greater good of the software.</p>\n\n\n\n<p>[00:16:45] Nathan Wrigley: Let&#8217;s explore the sort of reverse of that, if you like. And I&#8217;m going to use a product that I have as an example. I use Gmail to do my emails. And I have this Chrome extension, and the Chrome extension alters the Gmail interface in a way, which allows me to be slightly more productive. I won&#8217;t get into the detail, but it does that.</p>\n\n\n\n<p>And every couple of weeks something breaks, because Gmail alter some aspect of their interface. And the guy that makes the Chrome extension, he&#8217;s not in the loop of that. And the thing breaks and he has to contact all of his users and say, right on it. And gets it fixed and so on and so forth.</p>\n\n\n\n<p>And I feel, as we&#8217;re going to discuss in the future, you are now really committed to having a proportion of your income come from block based themes, and yet at the same time, although you&#8217;ve got, you&#8217;ve got a voice there and you&#8217;ve definitely got skin in the game. You are reliant upon the technology stack that is WordPress and it&#8217;s in a constant state of flux.</p>\n\n\n\n<p>You said it&#8217;s not quite there yet. I just wondered, and I don&#8217;t wish for you to become incendiary or anything like that. I wondered if you could highlight some of the grievances that you, well, not grievances, some of the things that you wish were better right now. Some of the areas where, if you could be in control of just fixing it by clicking your fingers, what would you amend?</p>\n\n\n\n<p>[00:18:03] Mike McAlister: Ooh, that&#8217;s a, that&#8217;s a really good question. Although I&#8217;m just releasing a block theme now, I&#8217;ve been dipping into and exploring block themes for years now. And only until recently did I feel like, okay, this is ready enough to put something out there. Because I&#8217;ve run a product business before, and a WordPress theme business before and support is a huge part of that, right?</p>\n\n\n\n<p>And in these early days of the block editor and block themes, with it being, you know, on a bit of shaky ground. Putting something out there I&#8217;ve seen it as like a support nightmare. I&#8217;m going to end up not just supporting my theme, I&#8217;m going to end up educating people on tons and tons of WordPress features, which I think that&#8217;s okay and great. And I think it&#8217;s actually a business model in itself.</p>\n\n\n\n<p>You don&#8217;t want to take on the frustration of the users, and have them funnel that through to something that&#8217;s your product, right? And they look at something I&#8217;m making and say, this thing sucks, or whatever. When really it&#8217;s just they don&#8217;t know this new WordPress yet, or they haven&#8217;t had the time, or that the pitfalls and the UX hurdles are being kind of painted onto your product. So yeah, I think up until recently I&#8217;ve felt like, okay, this is, it&#8217;s still going to be a bit of a transition, but I think it&#8217;ll be less painful.</p>\n\n\n\n<p>So that being said if I could snap my fingers and have one thing, well I&#8217;ve just recently written a post about responsive controls, which is another big hurdle. But I think even more than that, I would snap my fingers and bring together this UI UX in a way that makes a lot more sense.</p>\n\n\n\n<p>I feel like we&#8217;re in two worlds here. I think we have many remnants of the old WordPress. In fact, if you&#8217;re not in the site editor, you maybe wouldn&#8217;t even know that there&#8217;s a new WordPress. You&#8217;re looking at the same sidebar, same posts, pages. All of that is the same and that&#8217;s great. That&#8217;s worked well for a long time.</p>\n\n\n\n<p>But now we have our other foot in this whole new era of the site editor and block editor and blocks and block themes. And then when you&#8217;re in the site editor you can edit things live and do all this stuff. And so I feel like there are two entirely different WordPresses existing in WP admin. And it is, to me, not a great experience. I feel like if we&#8217;re going to go this route, I feel like it should be almost entirely wrapped around the site editor experience, and we&#8217;re able to do almost everything in there.</p>\n\n\n\n<p>And that gives us an opportunity to maybe rethink, and this is, I know, grandiose and big ideas, and there&#8217;s probably a lot of people who are cringing at the thought of redoing a lot of WordPress. But I think that there is an argument to be made about kind of moving forward in a more bold and meaningful way. And tying that experience together. So that when you&#8217;re editing a page, it looks like you&#8217;re editing a page, and not like you&#8217;re editing a page with content field or something like that, you know? So the great unification of sorts.</p>\n\n\n\n<p>[00:20:57] Nathan Wrigley: Thank you. That&#8217;s really fascinating. In terms of the skillset that you&#8217;ve had to adopt over the last period of time. When you decided, okay, I&#8217;m going to go all in on blocks. And it sounds like you&#8217;ve been doing this really, right from the beginning, which is fairly impressive. Very prescient of you.</p>\n\n\n\n<p>What are the new interesting, perhaps difficult, things that you&#8217;ve had to learn? The new tooling that you&#8217;ve had to acquire? What has had to become part of workflow over the last few years, which is different from how it would&#8217;ve been five, six years ago?</p>\n\n\n\n<p>[00:21:26] Mike McAlister: Yeah, it&#8217;s It&#8217;s quite fascinating actually, because I think those of us who are in WordPress a long time, you would typically think that the answer would be like, oh, I had to learn Webpack or React or whatever. And if you&#8217;re building blocks, that might be the case. When I&#8217;m talking about block themes, it&#8217;s not a technical skillset that I&#8217;ve had to pick up.</p>\n\n\n\n<p>But literally just spending the time in WordPress and understanding how all these things work together. Learning fluently how to build with all of the core blocks, in a way that you can build a layout using columns and groups, and the alignment settings, and justification and the row block. It is a skill that has to be learned use all these things fluently, and to just know it like the back of your hand so that you can go and build out a pattern, a page, whatever it is.</p>\n\n\n\n<p>And that did take, even for a WordPress veteran like me, quite a bit of time to get fluid with that stuff. But learning all of that stuff and then kind of dipping into block themes, that made that process a whole lot easier. Because block themes are just all of those things. It&#8217;s the row block. It&#8217;s the group block. It&#8217;s using the padding settings and building a design system with theme json.</p>\n\n\n\n<p>So that becomes a skillset in itself. And that&#8217;s where I spent so much time. And I think that&#8217;s why when I released this Ollie theme that we&#8217;ll talk about, I think a lot of people were kind of like blown away. Like, oh, you can do all this with this new stuff. And it&#8217;s all core and native features.</p>\n\n\n\n<p>But it took me a long time to pull all that stuff together and to be able to present it and a package that was like, oh, okay, this is coherent and well made and well designed and it actually works.</p>\n\n\n\n<p>[00:23:07] Nathan Wrigley: How much does the sand shift beneath your feet? So you mentioned earlier about getting skilled with the interface and using the group block and managing it to make these pixel perfect, really beautiful layouts which we&#8217;ll get onto in a moment. How steady has that process been?</p>\n\n\n\n<p>Or have you noticed that your designs from, well, let&#8217;s not say month to month, maybe half a year to half a year. Are there things which come along in the core blocks, changes which are made in the core blocks, which upset what you&#8217;ve managed to lay out in this perfect way? Or has the progress been steady away? Everything looks the same today as it did a year ago.</p>\n\n\n\n<p>[00:23:43] Mike McAlister: At this point, it&#8217;s very steady. The core blocks, the group blocks and things like this, buttons. These are not changing in any major way. There are little additions being made, but they&#8217;re iterative, and they&#8217;re backwards compatible as far as I&#8217;ve seen. There might be every once in a while, the spacing&#8217;s a little off or something like that and usually gets fixed pretty good.</p>\n\n\n\n<p>But I think with the amount of people using the Gutenberg plugin, where a lot of these big features are tried and tested and workshopped. I think there&#8217;s a good amount of eyeballs on these features there. That definitely helps, by the time it gets to core, it&#8217;s been vetted, it&#8217;s been worked out.</p>\n\n\n\n<p>People actually build with Gutenberg enabled. So I think there&#8217;s that. And so these days, when creating a theme, I didn&#8217;t have any major issues with the fundamentals.</p>\n\n\n\n<p>[00:24:31] Nathan Wrigley: Nice. I&#8217;m going to direct everybody listening to this podcast. Maybe just pause and go to this URL. The URL is olliewp.com. It is, as you might expect, o l l i e w p .com and have a little poke around. Have a look at what Mike has built, and what&#8217;s on offer. But just tell us about the theme itself. I&#8217;ve had a little bit of a play.</p>\n\n\n\n<p>I downloaded it. Currently, we can get onto this and the reasons for moment, it&#8217;s on, available on GitHub. You download it from there, and I installed it on a local install and had a play. Tell us a little bit, what&#8217;s the thinking here? Are you trying to make one theme that anybody can use? Do you have a particular niche in mind? What&#8217;s going on with Ollie?</p>\n\n\n\n<p>[00:25:13] Mike McAlister: I think Ollie started as an experiment for myself. I used it as an opportunity to, like I was saying, to learn all of these features. And one of the best ways to learn them is to build a block theme. Because it forces you to use all these different things, like patterns and global styles, and theme json. All of these features that make up a good block theme.</p>\n\n\n\n<p>So, I started it as an experiment to learn, and then along the way, you know, as a product minded person, and somebody who&#8217;s had a theme shop before, I thought, no, there is some commercial value here. I don&#8217;t know what it is yet. But I thought on top of it being a potential pivot for me to do, I just saw it as an opportunity to dip back into WordPress in a more meaningful way, in the product space.</p>\n\n\n\n<p>And I like creating things that people can learn from. I like putting things together in a package that you can hand off to somebody or send them the repo and they can see, and pick through the code and learn. And so that was the kind of intent behind Ollie. And right now it is, it&#8217;s just one theme with a bunch of beautiful patterns in it that you can use to quickly build out pages.</p>\n\n\n\n<p>I&#8217;m just using this early phase of Ollie to see what people think. How are people building with block themes? Are they building block themes? I think there&#8217;s so much unknown about this space because it&#8217;s so new, I&#8217;m just kind of sitting back and just learning and listening and watching people.</p>\n\n\n\n<p>Do they want more patterns? Do they want pre-made sites with block themes? There&#8217;s so many questions that I have. I&#8217;m using it as an opportunity to effectively ask these questions and learn.</p>\n\n\n\n<p>[00:26:41] Nathan Wrigley: The thing that really struck me, I should add at this point that I saw this from an article in the WP Tavern, which Sarah Gooding wrote on April 26th, 2023. I&#8217;ll link to that in the show notes. The thing that struck me immediately was the patterns. And I saw screenshots of the patterns and I thought, wow, they look great.</p>\n\n\n\n<p>And there was a video that I think she put together, scrolling through some of the patterns and thought actually that&#8217;s new, that&#8217;s interesting. They are right on the money for me. They look how I wish I could do things. And so downloaded the theme and really discovered that you really have gone to town with the patterns. I don&#8217;t know what the number is. It certainly looks like it&#8217;s more than 50 or 60 or something like that.</p>\n\n\n\n<p>That feels like where a lot of your endeavors have gone. So you&#8217;ve categorized them, obviously now in the site editor you can you click on the patterns button and then subcategories come down. And then a nice thumbnail appears, and you can enlarge those if you wish, on a big modal, which takes up the whole screen and so on.</p>\n\n\n\n<p>You&#8217;ll see straight away that the effort in building a typical website, brochure site for somebody has been taken away. So that&#8217;s my question. Did you approach this with patterns in mind? Like this is going to be a repository of great patterns and the rest hopefully will build itself, if you know what I mean.</p>\n\n\n\n<p>[00:27:56] Mike McAlister: Yeah, absolutely. I knew right away patterns were and are going to be a huge deal. Way back, late 2019, I was even playing with this rudimentary idea of what patterns could be with my friend John Paris. We experimented and prototyped out this idea of sections and layouts in WordPress. And it was effectively what would become patterns. This idea that you have pre-designed sections of your site, that you can click together like Lego pieces and make full layouts.</p>\n\n\n\n<p>I&#8217;ve always looked at patterns as a huge opportunity because it takes the pain out of building websites or even just sections. If I&#8217;m able to put together a beautifully designed hero section, or a featured section with blocks and make it look great and hand it over to you. You can throw that on your page. You don&#8217;t have to mess with the design. You just tweak the colors if you want, and change the content. And then you go about your business.</p>\n\n\n\n<p>We&#8217;ve removed the pain of even you having to build your own blocks or your own patterns. And hopefully that is the paradigm that we go with. Hopefully people latch onto this idea that maybe I don&#8217;t have to tinker with every single part of my website. Maybe just going with these beautiful designs, changing the content, changing the color, and then focusing on my content, and focusing on my audience and focusing on my following. And I think the patterns are going to be a huge deal for sure.</p>\n\n\n\n<p>[00:29:21] Nathan Wrigley: Truly I think the designs are absolutely fabulous. They are categorized into posts, texts, call to action, cards, features, heroes, pages, prices and testimonials. Who knows, maybe that will be expanded over time. But in each of those there&#8217;s in some cases a handful and in many cases multiple dozens really of different patterns that you can select.</p>\n\n\n\n<p>And if you&#8217;ve never had the experience of doing this in a theme, you just pick on one that you like, and you just click on the icon and there it is. It&#8217;s now the next part of your website. And you can then amend it, you can change it.</p>\n\n\n\n<p>Give us a bit of an insight into what people can do in terms of saving things. So let&#8217;s imagine that they&#8217;re using yours as sort of boiler plate and they&#8217;re going to click things in, but they want to amend the colors. Yours is fairly opinionated. It&#8217;s nice dark black, and there&#8217;s this lovely kind of blue color, which dominates everywhere. But obviously that might not fit with everybody.</p>\n\n\n\n<p>Is it fairly straightforward, again for inexperienced users, to save those and modify them and keep their own modifications with this new site editing interface?</p>\n\n\n\n<p>[00:30:25] Mike McAlister: Absolutely. That&#8217;s kind of the beautiful part about this, right? Is that you can go into one of your preexisting pages and click to add one of the patterns I&#8217;ve designed, and put it on your page. Or you can throw a full layout, which I&#8217;ve included a few full layouts, like home, about, and features, and things like this.</p>\n\n\n\n<p>You throw it onto your page. You customize it how you want. You can change the content inline. You can change the colors on the page if you want. Or you can go to the global styles in the site editor, and you can change that bluish purple color that I&#8217;ve chosen to whatever color you want, your brand color. And instead of going through and changing it in every little pattern, it will change that color on every single pattern I&#8217;ve included in this theme.</p>\n\n\n\n<p>So you don&#8217;t have to go change the colors anywhere. It will literally propagate that color throughout the whole site. Because this whole thing is a live design system, right? It&#8217;s effectively a design system that is tied into every aspect of WordPress. So when you&#8217;re in the site editor, when you&#8217;re in posts, when you&#8217;re in pages, all of these styles travel with these patterns.</p>\n\n\n\n<p>Even typography, you don&#8217;t like the font? You can change the font. It&#8217;ll propagate through the whole thing because that&#8217;s how this is all wired up. So yeah, so if you want to go in and change a page, all you do is, you go in there, add a pattern, save it. Save it just like you would any other page. And it&#8217;s good to go.</p>\n\n\n\n<p>[00:31:47] Nathan Wrigley: Yeah, it is increasingly becoming a really compelling system. It just requires people like you to get as many people over that hump as possible and experiencing it. But I can only say if you download it, have a go. Within minutes I suspect that you&#8217;ll have something that you are very, very happy with and that you can modify.</p>\n\n\n\n<p>In terms of the patterns of themselves, is that an area that you&#8217;ve explored? Or would like to explore commercially? So okay, I know you&#8217;ve got Ollie, but have you given any thought to the commercial possibilities of just patterns, simply patterns? Not bound to any theme. Just a downloadable set of patterns. And obviously you&#8217;re a very, very credible designer, we can see that. That you could then give to people, sell to people, so that they can download them into any site no matter what block-based theme they&#8217;re using.</p>\n\n\n\n<p>[00:32:34] Mike McAlister: I always knew patterns were going to be a big deal. But I think, after just releasing Ollie to GitHub and seeing it get picked up by a few news outlets and some people on YouTube, were making videos about it. I think the number one thing everyone always raves about is the patterns. And maybe if they&#8217;ve explored patterns before on wordpress.org or used other themes that have patterns.</p>\n\n\n\n<p>I don&#8217;t know if they&#8217;re just kind of underwhelming typically. But I think I did spend a great deal of time making sure these patterns were making a statement. They are saying, no you can do this in WordPress. I wanted to prove that I can design something as good, if not better, than what we had before. And I&#8217;ll do it all with blocks, native blocks. Not one custom blocks in there. These are all just core blocks, and they&#8217;re going to be beautiful, and they&#8217;ll be fully responsive and fully customizable.</p>\n\n\n\n<p>And so, I think that&#8217;s what people see. And when they see these patterns and how they all cohesively fit together. You can pop these onto a page in any different order and they kind of just fit together and that&#8217;s part of the overall design system. But yeah, so I see patterns as a huge opportunity and I wasn&#8217;t sure commercially. And still I don&#8217;t know. I&#8217;m using this opportunity to ask a lot of questions.</p>\n\n\n\n<p>But I think the first few weeks, the response has been largely very positive about patterns. And so I&#8217;m definitely curious about that. And I think there&#8217;s opportunities to do more advanced patterns, and maybe use some pro blocks to make patterns even more appealing. So yeah, pro patterns is definitely something I&#8217;m exploring</p>\n\n\n\n<p>[00:34:07] Nathan Wrigley: You mentioned that you&#8217;d spent a lot of time learning the core blocks, and you also just mentioned that everything that comes with Ollie is based around a core block. Was that a straightforward experience? Or did you find that there are certain limitations in what you could achieve based upon the capabilities of core blocks? Or would you say basically you can implement almost any design you wish with core block? Certainly looks like you&#8217;ve managed to achieve that.</p>\n\n\n\n<p>[00:34:34] Mike McAlister: Sometimes I&#8217;d have an idea of what I wanted to do, and couldn&#8217;t quite do it. But I think if you get clever, you can get really close, right? For example, I would love if WordPress had a icon block. A core icon block that we could tie into. I don&#8217;t want to have to make my own, because there&#8217;s a bunch out there.</p>\n\n\n\n<p>And I also, you know, in terms of the ease of distribution and giving customers designs right out of the box. I don&#8217;t want them to have to install a plugin to do it. And icons are so prolific. I would just hope that we could have that in core. Well, we can&#8217;t have that yet. And so, when doing simple things like wanting to add an icon here for people to see like, kinda like a placeholder for an image or an icon.</p>\n\n\n\n<p>I used the HTML star, right? And I use that in ratings, you know, in design, like if you want to put a rating there, I put like five HTML stars, and I use it on feature sections. So, clever little things like that. It&#8217;s giving people enough to understand, oh this is what this is meant to be. This is the design. Oh, I might put my own icon here. Or even things like cleverly using the rows and group blocks to get things aligned how you want. Grouping of blocks to do unique things with them, spacing wise. It&#8217;s just a lot of clever usage of what&#8217;s there.</p>\n\n\n\n<p>And I think part of that does come from tinkering enough. And if you really want to get that design out of your head and on to the page, you&#8217;ll figure it out. But it might take, it might take some tinkering.</p>\n\n\n\n<p>[00:36:01] Nathan Wrigley: Yeah, I&#8217;m on the install that I have at the moment and I&#8217;m on the star rating. You&#8217;ve got five stars, and I can see that they&#8217;re using paragraph blocks. And then elsewhere you&#8217;re using the social icons block to display those social icons. And I guess that&#8217;s the experience you would want, is just pick an icon, much like you do in the social icons block and make it more straightforward. That&#8217;s really interesting.</p>\n\n\n\n<p>Why GitHub? Why not the WordPress repo? Was there some sort of decision there? Again, I should emphasize it, at this moment in time, if you want to grab this theme, you&#8217;re going to be heading over to GitHub and downloading it. Why there and not in the repo? Is there a decision behind that?</p>\n\n\n\n<p>[00:36:36] Mike McAlister: No philosophical decision. I think it will be on the repo soon actually. Like I said, with these block themes, there&#8217;s so much to learn and I wanted to put it out there. You know, it worked great for me when I was building it and making it. But I wanted to get it out there and get people using it to understand if there was any major shortcomings or just catch any early usability patterns that I was seeing. Any issues like that and see like, oh, actually people don&#8217;t love these patterns.</p>\n\n\n\n<p>Or, is there something about the workflow that I could improve before releasing it to a wider audience? So, I just mostly wanted to iron out all the kinks and GitHub was just the obvious place to do that. But to be honest a lot of the quirks that people have brought up with the theme on GitHub and the GitHub issues and stuff, are largely just Core issues. Just usability, preferences and workflow preferences and things like that.</p>\n\n\n\n<p>I haven&#8217;t uncovered any major issues and so I feel like what I&#8217;m going to do is kind of wrap it up. It&#8217;s already fully tested and gone through the theme check and everything. So it&#8217;s pretty much ready to go. And I think I&#8217;ll do that in the next week or two.</p>\n\n\n\n<p>[00:37:41] Nathan Wrigley: Oh, okay. In that case, by the time this podcast airs, this question will be somewhat moot. But anyway, worth, asking I think. I noticed as I was moving around on the site, olliewp.com. I noticed buried somewhere was referenced to Ollie Cloud, and that got me thinking, okay, in that case, is Ollie something bigger than simply this one theme?</p>\n\n\n\n<p>And so that&#8217;s where I&#8217;m going to take the conversation next. Is Ollie, in the same way that you had Array Themes and you had Atomic Blocks. Is Ollie something bigger for you, Mike? Is that a direction that you&#8217;re going to take it in? Are you now hoping to, sort of, have a bunch of things wrapped around in the Ollie branding?</p>\n\n\n\n<p>[00:38:22] Mike McAlister: I think so. I wasn&#8217;t sure about that initially. Again, this just kind of started as a experimental WordPress theme. But I don&#8217;t know the product creator in me, the entrepreneur in me, always tries to see things from that sphere as well. And so as I&#8217;m looking at the WordPress ecosystem, and I&#8217;m exploring what is this thing like now? It&#8217;s been a while since I&#8217;ve had a product out there.</p>\n\n\n\n<p>I do see all kinds of opportunities, and I&#8217;m still learning what they are. But I also have my own opinionated ideas about how we could wrap up this new, all these new capabilities, and deliver a new experience. A premium experience with some of this stuff. And so, on the Ollie WP website I had, I do have a box at the bottom about Ollie Cloud. And the idea there, I think is it could be Ollie Cloud, it could be Ollie Pro. I don&#8217;t know. I&#8217;m really just gathering feedback and seeing what people want, as I mentioned.</p>\n\n\n\n<p>But the idea is that all of these new features, these theme assets, patterns and theme json files and all that stuff. They&#8217;re all very lightweight, and very movable, and very modular, and they can kind of plug and play in to WordPress. And I don&#8217;t know, I think there&#8217;s an interesting idea about the experience about how we build sites these days.</p>\n\n\n\n<p>Should you have to start from scratch on every site? And should we still be copying and pasting themes around like it&#8217;s the mid two thousands? And is there a better way of doing that? Is there a better way of pulling in a site template?</p>\n\n\n\n<p>There&#8217;s a lot of interesting things there and I think, another thing I&#8217;m learning, and I think we&#8217;ve seen just generally is that, I don&#8217;t know, I think users are maybe a little fatigued with that in WordPress. Starting with a blank slate and being like, ugh, I have to find a theme and then I have to maybe try out a few themes, and then I don&#8217;t know if I need to pay for one, and then I need a form block, and then all of a sudden I need a buy a contact form.</p>\n\n\n\n<p>And then there&#8217;s a bunch of upsells for contact forms. And I don&#8217;t know. All that stuff to me, after all these years on WordPress, feels kind of icky. Uh, I guess. And I think customers and users want experiences and solutions more than they want individual themes and plugins. So a premium offering or a premium experience is something I&#8217;m interested in. What kind of experience can we do differently that delivers the same result, but takes all of the pain building on WordPress?</p>\n\n\n\n<p>[00:40:46] Nathan Wrigley: It kind of feels as if you may be repeating history for yourself here in that, you know, 2010. Array themes, we mentioned you were right there at the beginning of that tidal wave. Maybe with a fair wind, the same thing may happen again here? You may well have discovered that seam of gold, just as it&#8217;s starting to take off. Because all the chatter that I&#8217;m listening to at the moment is very much related to blocks and exploring patterns, blocks, block based themes, and how you can maybe tie those three things together.</p>\n\n\n\n<p>And pro blocks, which bring additional functionality. You know, areas where Core perhaps doesn&#8217;t cut it. I&#8217;m thinking, in my case, one that just keeps coming into my head is a superior navigation block, that does a whole load of styling and what have you. And who knows what&#8217;s going to be around in two or three years time? But there do seem to be companies who are straying into this and dabbling with it and trying, like you are, I guess, to figure out what the landscape may look like.</p>\n\n\n\n<p>[00:41:43] Mike McAlister: Yeah, I&#8217;m just as unsure I think as anybody about where this thing goes. But I&#8217;ve never been afraid to try and put in the work to get something going and see where it goes. Like I said at the top, I think there&#8217;s an opportunity here that we&#8217;ve not seen in a long time in WordPress and may never see again.</p>\n\n\n\n<p>And if these are the early days of the new generation of WordPress, I&#8217;m certainly going to try and throw my hat into the ring and craft a new experience, and maybe rebrand WordPress, and help outside folks see WordPress in a new light. Because I think that&#8217;s a huge part of this new reboot. Is that WordPress maybe hasn&#8217;t been traditionally like, quote unquote cool, to a lot of web folks.</p>\n\n\n\n<p>It&#8217;s certainly very popular and very prolific, but we maybe haven&#8217;t attracted the best talent and the best coverage in the wider web world. So, I look at it as an opportunity to rebrand that and maybe grab another cohort of the web that we haven&#8217;t had yet. And I think part of that is new products, and different products, and better looking products, and better experiences, and taking some of the pain out of WordPress that we&#8217;ve traditionally had.</p>\n\n\n\n<p>[00:42:57] Nathan Wrigley: If somebody listening to this is inspired about block themes in general, because that&#8217;s been the broad tenor of what we&#8217;ve talked about. Do you have any names to drop or resources that you&#8217;ve used, that enabled you to learn this kind of stuff? And if you do mention anything, I will endeavor to link it into the show notes.</p>\n\n\n\n<p>I don&#8217;t mean like a laundry list of hundreds of things, but a couple of things which you thought, actually, for those that are exploring this, this is a really great resource. This is a really profoundly interesting person and so on.</p>\n\n\n\n<p>[00:43:24] Mike McAlister: Yeah. First I would start, I&#8217;m somebody who I need to work from examples. I need to see the code and I need to see the, a working thing to get inspired and know how to do things. So, on that note you mentioned that Ollie is on GitHub. It will remain there. This version of Ollie that I&#8217;m putting out is always going to be free. And always going to be on GitHub. So it is a great resource for picking through the code, especially theme json, where I think there&#8217;s so, so much you can do in there, but it is hard to understand what you can do when you&#8217;re kind of looking at it from the outside.</p>\n\n\n\n<p>So if you&#8217;re curious, start there, because I&#8217;ve wired this thing together. I think how it should be, or largely how it should be at this moment in time. And so it&#8217;ll give you a great headstart and great understanding of how all these things tie together. So start there.</p>\n\n\n\n<p>And in terms of people, I actually, on my Twitter list or on my Twitter page, I have a list of WordPressers. And on that list is a great many folks who are a lot of voices in this stuff. WordPress Core folks like Nick Diego and Rich Tabor, and Carolina Nymark. These people spent a great deal of their time in WordPress, and listening to WordPress conversations, and taking part in the GitHub conversations. So I would check out that list. I can actually send it over to Nathan as well if he wants to include it?</p>\n\n\n\n<p>[00:44:43] Nathan Wrigley: Yeah, that&#8217;d be great. I will in some way copy and paste it into the show notes or somehow link to it. But yeah, that&#8217;s really helpful. Thank you so much.</p>\n\n\n\n<p>[00:44:50] Mike McAlister: Twitter is, love it or hate it. It is where traditionally the WordPress community has hung out, and so it still is the case, even though some people are coming and going. It still is where a lot of conversation happens on WordPress and WordPress development and what&#8217;s new. And so it is a good place even if you just want to read and follow along. It is a good place to see those conversations.</p>\n\n\n\n<p>[00:45:13] Nathan Wrigley: I will link to whatever it is that you send me, Mike. Thank you for that. Okay, just one final question. It&#8217;s more about people finding you really. If somebody&#8217;s listened to this and their interest has been peaked. What are the the best ways, it sounds like it might be Twitter, but it may not be. What are the best ways to get in touch with you, Mike?</p>\n\n\n\n<p>[00:45:32] Mike McAlister: Yeah, I&#8217;m most active on Twitter. Like I said, I think that&#8217;s kind of where our community is still thriving. And so, yeah, I&#8217;m on Twitter largely. My personal account is @mikemcalister. I do a great deal of tweeting about WordPress and design and the intersection of all these different things.</p>\n\n\n\n<p>And then, there&#8217;s a dedicated Twitter account for Ollie as well. You can follow that, that&#8217;s @buildwithollie. I&#8217;m also writing on the Ollie WP blog fairly regularly. So this is another place where I&#8217;m able to share my learnings of all of this stuff with block themes and WordPress in general. And, I&#8217;m writing some long form content, some short tips and tricks and, that&#8217;s all the time I have to hang out.</p>\n\n\n\n<p>[00:46:17] Nathan Wrigley: You have other important things to by the sounds of it. Mike, really appreciate you chatting to us today. Thank you so much, and every success with Ollie, whatever direction you take with that.</p>\n\n\n\n<p>[00:46:28] Mike McAlister: Thank you so much. I love chatting about this stuff and this was a great form for that, so thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://mikemcalister.com/\">Mike McAlister</a>, and he’s here today to talk about his experiences creating a block-based theme.</p>\n\n\n\n<p>Mike is a veteran product developer and designer in the WordPress space. He&#8217;s founded and sold multiple WordPress products like Array Themes and Atomic Blocks. Now he’s focused on the future of WordPress with his new product brand, Ollie.</p>\n\n\n\n<p>Mike kicks off the podcast by telling us about his WordPress journey, and how WordPress blocks have renewed his passion for the platform.</p>\n\n\n\n<p>We get into some history, and talk about the era when WordPress themes were extremely popular. Marketplaces like Envato made it possible to sell themes and create a career in ways hitherto unimagined.</p>\n\n\n\n<p>Mike explains what the key differences are between a block-based theme and a classic theme. How it’s possible to create themes inside the editor, and how you can do this without needing to know much code. We talk about the fact that, if you’re a coding expert, you could always create complex themes, but this fresh approach opens up the possibilities for those with less technical backgrounds. The experience in the editor might not be exactly what everyone wants, but it’s evolving quickly and maturing with every new release of WordPress.</p>\n\n\n\n<p>The conversation moves onto why Mike is so confident that block-based themes are going to succeed. You don’t need to use one, and your trusty classic theme and the associated Customizer will work for the foreseeable future.</p>\n\n\n\n<p>We then turn our attention to the technical hurdles that Mike has had to overcome. What new workflows and tools did he need to adopt and master to make his work possible? Mike’s been really focussed on using WordPress Core Blocks to create his themes, digging into the weeds of what they can do and what their limitations are. It’s been a path of steady learning, punctuated with minor setbacks when the editor and blocks are updated in unexpected ways. Thankfully, these bumps in the road are now relics of the past, as breaking changes have given way to stability.</p>\n\n\n\n<p>We then talk about a specific theme that Mike has just released. It’s called Ollie, and it’s the focus of the rest of the podcast. How did Mike build Ollie, and what is he hoping to achieve with this new brand?</p>\n\n\n\n<p>Patterns feature heavily in Ollie and we talk about how it’s possible to alter the look and feel of your site quickly. Typography and colours are easy to change with the new suite of design tools which ship with WordPress.</p>\n\n\n\n<p>If you’re wanting to develop block-based themes, or are just curious about how other developers are building them, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://themeforest.net/user/arraythemes\">Array Themes</a> on Themeforest</p>\n\n\n\n<p><a href=\"https://atomicblocks.com/\">Atomic Blocks</a></p>\n\n\n\n<p><a href=\"https://olliewp.com/\">OllieWP website</a></p>\n\n\n\n<p><a href=\"https://github.com/OllieWP/ollie\">Ollie GitHub repo</a></p>\n\n\n\n<p><a href=\"https://twitter.com/i/lists/1648871212645318658\">WordPressers Twitter list</a> mentioned by Mike</p>\n\n\n\n<p><a href=\"https://twitter.com/mikemcalister\">Mike&#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, 31 May 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: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:81:\"Do The Woo Community: Let’s Meet or Do a Quick Recording at WCEU 2023 in Athens\";s:7:\"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=75259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/lets-meet-or-do-a-quick-recording-at-wceu-2023-in-athens/\";s: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:412:\"<p>If you are going to be there, and I know I\'m going to be there, hope we get to see each other. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/lets-meet-or-do-a-quick-recording-at-wceu-2023-in-athens/\">Let&#8217;s Meet or Do a Quick Recording at WCEU 2023 in Athens</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:\"Wed, 31 May 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:69:\"Do The Woo Community: Builder Tips from WordCamp Europe 2023 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:28:\"https://dothewoo.io/?p=75225\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/wceu-2023-speaker-builder-tips/\";s: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:369:\"<p>We continue our tradition and highlight some of the voices from WordCamp Europe 2023 speakers.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wceu-2023-speaker-builder-tips/\">Builder Tips from WordCamp Europe 2023 Speakers</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, 30 May 2023 07:42: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: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: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:18:\"Matt: Power of One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=85361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/05/power-of-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:671:\"<p>I think part of what <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">Mike Little showed with his comment on my blog</a> that led to the creation of WordPress, is that it&#8217;s not about how many views you have, how many likes, trying to max all your stats&#8230; sometimes a single connection to another human is all that matters. </p>\n\n\n\n<p><em>All it takes is a spark. </em></p>\n\n\n\n<p>That&#8217;s what is beautiful about blogging. It&#8217;s too bad the advertising and social media platforms got us all caught up in status games for the past 15 years.</p>\n\n\n\n<p>All you need is one view, one like, one comment, to change your life.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 May 2023 17:23: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: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: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:24:\"Donncha: WordPress at 20\";s:7:\"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://odd.blog/?p=89589836\";s:7:\"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:44:\"https://odd.blog/2023/05/27/wordpress-at-20/\";s: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:1813:\"<p>Happy birthday, WordPress!</p>\n\n\n\n<p>What does that even mean, though? WordPress is the community of people who have built it and contributed to it over the last <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">two decades</a>, and before that, when it was a little known blogging package called b2. So, thank you so much to everyone who has contributed to WordPress over the years.</p>\n\n\n\n<p>WordPress has given me, and countless others, many opportunities we couldn&#8217;t have dreamed of. Just over two years <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">after WordPress was first released,</a> I joined Automattic. Working on two machines, <a href=\"https://ma.tt/\">Matt</a> and I started work on the first WordPress.com. Here I am, almost 18 years later, and still working on WordPress related software. What a journey. Matt <a href=\"https://ma.tt/2023/05/wp20-audrey-scholars/\">marked the occasion</a> by announcing a generous <a href=\"https://audrey.co/scholars/\">scholarship programme</a>. Matt was also <a href=\"https://ma.tt/2023/05/with-mike-little-and-dries-buytaert/\">on stage in London</a> with Mike Little and Dries Buytaert last week in a conversation I must listen to yet, but I&#8217;ve heard some good things about it WRT Gutenberg.</p>\n\n\n\n<p>Anyway, it&#8217;s almost midnight here, but I wanted to get some words down on this blogging platform we all love. May we all be here for the next twenty years.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Oh, and before I go, you can hear me say a few words about meetups at Automattic in the <a href=\"https://distributed.blog/2023/05/26/episode-30-meetups/\">latest episode of the Distributed podcast</a>. It&#8217;s edited well, that&#8217;s all I&#8217;ll say!</p>\n\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:\"Sat, 27 May 2023 22:56: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:\"Donncha\";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:32:\"Matt: WP20 &amp; Audrey Scholars\";s:7:\"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=85238\";s:7:\"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:43:\"https://ma.tt/2023/05/wp20-audrey-scholars/\";s: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:1140:\"<p>Today is the 20<sup>th</sup> anniversary of the <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">first release of WordPress</a>. None of us knew what we were getting into when it started, but we had a shared conviction that the <a href=\"https://ma.tt/2014/01/four-freedoms/\">four freedoms of the GPL</a> combined with a mission to democratize publishing was something worth spending our time on. There will <a href=\"https://wp20.wordpress.net/\">be celebrations in cities around the world</a>, please join if there&#8217;s one happening near you.</p>\n\n\n\n<p>Twenty years later, I am proud and humbled by what the community around <a href=\"https://wordpress.org/\">WordPress</a> has created, and jazzed about what we will create in the coming decades.</p>\n\n\n\n<p>I&#8217;m also excited to mark this milestone by publicly launching the <a href=\"https://audrey.co/scholars/\">Audrey Scholars program</a>. It is, like all things, an experiment, but I&#8217;m curious to see how it unfolds and perhaps one day an Audrey Scholar could even take the responsibility of leading WordPress, when my capacity to do so has passed.</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, 27 May 2023 22:10: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: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: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:28:\"WPTavern: WordPress Turns 20\";s:7:\"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=145526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://wptavern.com/wordpress-turns-20\";s: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:5804:\"<p><a href=\"https://wp20.wordpress.net/\">WordPress is 20</a> years old today, an estimable milestone for open source software running on the web. Parties are happening all over the world &#8211; in Geneva, Los Angeles, Istanbul, Bangkok, Lahore, Jakarta, Mumbai &#8211; in over 150 different locations.</p>\n\n\n\n<img />\n\n\n\n<p>The software has been downloaded more than 2.8 billion times but the most impressive stat is the project&#8217;s staggering 112,000 contributors, past and present, who have improved and energized WordPress with their passion, talent, and hard work. </p>\n\n\n\n<p>None of the global collaboration we enjoy today would exist without the inspiration and leadership of co-founders Matt Mullenweg and Mike Little. They worked in a distributed way from day one, having never met when they started WordPress. This way of working created the foundation for a global contributor base that now supports <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">43% of the world&#8217;s websites</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It\'s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote>\n</div>\n\n\n\n<p>WordPress has had a profound impact on the lives of millions of users, giving them a voice on the web and the tools to launch businesses, create jobs, and bring ideas to life. The <a href=\"https://twitter.com/hashtag/WP20?src=hashtag_click\">#WP20</a> hashtag is replete with stories of how WordPress and its community have given people a place of belonging and launched them into successful endeavors.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Congratulations WordPress &#8211; 20 already <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />I discovered WordPress at the lowest point in my life back in 2012 when I was homeless and jobless in the new city. I was desperate to get back to tech but as a college dropout &#8211; there were no jobs for me in IT. <br /><br />From building my first… <a href=\"https://t.co/Um1Sbcl7RQ\">pic.twitter.com/Um1Sbcl7RQ</a></p>&mdash; Rajendra Zore (@rajendrazore) <a href=\"https://twitter.com/rajendrazore/status/1662450273703575553?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<p>Does WordPress have 20 more years in its future? Two of the biggest challenges ahead are capturing the hearts of the next generation of builders and maintainers, and preserving the open web where WordPress has thrived. The project&#8217;s 2022 annual survey showed that the respondent demographic is aging. The percentage of respondents under age 40 has decreased every year, as WordPress enters its third decade.  </p>\n\n\n\n<img />\n\n\n\n<p>Ensuring that WordPress remains resilient and relevant to future generations has required some courageous leadership decisions, like introducing the block editor, and may bring some significant shifts down the road, as we enter a <a href=\"https://wptavern.com/wordpress-contributors-discuss-how-core-can-better-enable-ai-innovation\">new era of AI-powered innovation</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Happy birthday WordPress…  Our youngest attendee singing it for you. We Love <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/wp20?src=hash&ref_src=twsrc%5Etfw\">#wp20</a> <a href=\"https://twitter.com/sajithvmohan?ref_src=twsrc%5Etfw\">@sajithvmohan</a> <a href=\"https://twitter.com/mbigul?ref_src=twsrc%5Etfw\">@mbigul</a> <a href=\"https://twitter.com/Ajay_Aravind?ref_src=twsrc%5Etfw\">@Ajay_Aravind</a> <a href=\"https://twitter.com/ARUN_PK10?ref_src=twsrc%5Etfw\">@ARUN_PK10</a> <a href=\"https://twitter.com/ajith_rn?ref_src=twsrc%5Etfw\">@ajith_rn</a> <a href=\"https://twitter.com/HariShanker?ref_src=twsrc%5Etfw\">@HariShanker</a> <a href=\"https://twitter.com/twittnebu?ref_src=twsrc%5Etfw\">@twittnebu</a> <a href=\"https://twitter.com/sarunrajkm?ref_src=twsrc%5Etfw\">@sarunrajkm</a> <a href=\"https://twitter.com/Hitha_ck?ref_src=twsrc%5Etfw\">@Hitha_ck</a> <a href=\"https://twitter.com/swethabc9?ref_src=twsrc%5Etfw\">@swethabc9</a> <a href=\"https://twitter.com/farhansrambiyan?ref_src=twsrc%5Etfw\">@farhansrambiyan</a> <a href=\"https://twitter.com/GoDaddyPro?ref_src=twsrc%5Etfw\">@GoDaddyPro</a> <a href=\"https://twitter.com/GoDaddy?ref_src=twsrc%5Etfw\">@GoDaddy</a> <a href=\"https://t.co/vI1XVIVbyn\">pic.twitter.com/vI1XVIVbyn</a></p>&mdash; WordPress Kozhikode (@wpkozhikode) <a href=\"https://twitter.com/wpkozhikode/status/1662454627416309760?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<p>Major milestones are are a good time to acknowledge the efforts that made all of this possible. Thank you, dedicated contributors, for lending WordPress a little bit of your fire and a lot of your patience, nurturing, and support. The code under the hood may look very different from the early days in 2003, but WordPress is still that same scrappy, irrepressible force of good on the web that users can count on for years to come.</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, 27 May 2023 21:19:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:142:\"Gutenberg Times: Happy 20th Anniversary, Governance of Block Editor, Playground and a new FSE call for testing   #WP20 – Weekend Edition 255\";s:7:\"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=24285\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://gutenbergtimes.com/happy-20th-anniversary-governance-of-block-editor-playground-and-a-new-fse-call-for-testing-wp20-weekend-edition-255/\";s: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:23698:\"<h2 class=\"wp-block-heading\" id=\"0-strong-happy-20th-anniversary-to-word-press-strong\">Happy 20th Anniversary to WordPress! </h2>\n\n\n\n<p>Congratulations to everyone working, teaching, developing, designing, writing, supporting, in short: being part of the WordPress community and the ecosystem. Open-Source is a fascinating idea that has been proven no only successful in certain parts of the world but in all 200 countries where WordPress is used! Millions of lives changed with technology and being able to tell their stories online. It&#8217;s as some Americans would call it, a BFD, a big &#8216;fine&#8217; deal.  It&#8217;s hard to put in words on how blessed I feel as I have had the privilege to earning a living, being involved in the community and now contributing full-time wherever my skills are needed or wanted.  </p>\n\n\n\n<img />\n\n\n\n<p>A real treat is the video <a href=\"https://www.youtube.com/watch?v=QYhIItlPPOs\"><strong>20 years of WordPress: A conversation with Matt Mullenweg, Mike Little and Dries Buytaert</strong></a> &#8211; The founders of the open-source CMSs, Drupal and WordPress, were for the first time together on stage and had a wonderful conversation about their beginnings of the web, their projects, and the future of building open-source software. </p>\n\n\n\n<p><em><strong><a href=\"https://github.com/WordPress/wp20-book\">Building Blocks: The Evolution of WordPress</a></strong></em>, a book documenting the second decade of the&nbsp;<strong>WordPress</strong>&nbsp;project, will be&nbsp;released today. </p>\n\n\n\n<p>Join the #WP20 the <a href=\"https://wp20.wordpress.net/\">150+ events around the world</a>, <a href=\"https://wp20.wordpress.net/news/\">Things to do</a> and <a href=\"https://wp20.wordpress.net/live/\">tweets </a>online  on <a href=\"https://wp20.wordpress.net/\">wp20.wordpress.net</a>. Incidentally, at WordCamp Europe I will show off my 20-year Anniversary T-Shirt and I added some stickers to my laptop, too. You can get both from the <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">swag store under WP20 category</a>. What is your favorite #WP20 Celebration? </p>\n\n\n\n<p>If you&#8217;d like to listen to some community voices who talking about their WordPress experience and history: Follow the <a href=\"https://wptavern.com/tag/anniversary\"><strong>WP Jukebox Mini-series on WP20 Anniversary</strong></a> &#8211; hosted by David Bisset. </p>\n\n\n\n<p>The <strong>WordPress Marketing team</strong> has been giving daily prompts for bloggers, developers, designers, photographers, and contributors in the <a href=\"https://make.wordpress.org/marketing/tag/from-blogs-to-blocks/\"><strong>From Blogs to Blocks</strong></a> campaign for the last 20 days. It has been a huge success! So many people participated.  You should make a point of going back and reading the comments from contributors. </p>\n\n\n\n<p><strong>David Wolfpaw</strong> mentioned the <a href=\"https://davidwolfpaw.com/day-5-wp20-from-blogs-to-blocks/\">Museum of Block Art</a> as his &#8216;<em>most creative use of WordPress that you have ever seen.</em>&#8216; (The Day 5 Prompt of #wp20 From Blogs to Blocks Campaign by the WordPress Marketing team. )</p>\n\n\n\n<p>Now, this Weekend edition is not all about the 20-year anniversary. The <a href=\"https://make.wordpress.org/marketing/2023/05/17/day-10-wp20-from-blogs-to-blocks/\">Day 10 prompt of May 25th</a>, for bloggers: &#8220;<em>What upcoming WordPress projects are you most excited to see happen?</em>&#8221; is a great segue back to the upcoming WordPress 6.3 release.  </p>\n\n\n\n<p>Three participants shared their thoughts: </p>\n\n\n\n<ul>\n<li>&#8220;I am really excited of Media Management. It will be a really cool thing.&#8221; wrote <a href=\"https://chetanprajapati.com/wp-day-10-i-am-excited-for-wordpress-media-management/\"><strong>Chetan Prajapati</strong></a></li>\n\n\n\n<li><strong><a href=\"https://davidwolfpaw.com/day-10-wp20-from-blogs-to-blocks/\">David Wolfpaw</a></strong> is excited about the upcoming APIs change (Block API, Fonts API) , PHP8.2 compatibility of Core and the Custom CSS in Theme variations. </li>\n\n\n\n<li><strong><a href=\"https://dogwonder.co.uk/2023/05/day-10-wordpress-roadmap/\">Rich Holman</a></strong> is eagerly awaiting the Interactivity API  and tells you why</li>\n</ul>\n\n\n\n<p>What are you excited about when you read through the <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap 6.3</a> post? Please share in the comments or via email. </p>\n\n\n\n<p>And now back to the regular programming! </p>\n\n\n\n<p>Have a wonderful weekend! </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-strong-happy-20th-anniversary-to-word-press-strong\">Happy 20th Anniversary to WordPress! </a></li><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/#3-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></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>Sarah Gooding</strong> reported on last week&#8217;s <a href=\"https://wptavern.com/gutenberg-15-8-adds-pages-menu-to-site-editor-revisions-ui-to-global-styles\">Gutenberg 15.8 Adds Pages Menu to Site Editor, Revisions UI to Global Styles</a>. </p>\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>?️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\">Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments</a> with special guest, Fabian Kägy and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong> continues her series of <em>Core Editor Improvements</em> with a post<a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\"> </a>about the <a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\"><strong>Smoother Site Editing</strong></a> experience. The big improvements coming are Revisions and Block Themes previews. She explains the genesis as well as how the new features are supposed to work.  </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>posted <a href=\"https://www.pootlepress.com/2023/05/its-time-to-get-rid-of-the-wordpress-gutenberg-plugin/\"><strong>It’s Time to Get Rid of the WordPress Gutenberg Plugin</strong></a>. He ruminates that Gutenberg in WordPress and Gutenberg as a plugin confused site owners. Some users don&#8217;t know that the block editor has been part of WordPress since 2018, and and think, they need to install the Gutenberg plugin to get it. Marsland does not want to deprive users to get early access to new features, nor developers to test new features with a smaller feedback loop. If I understand Marsland&#8217;s plea, he feels a Core Beta program might be more suitable than a separate plugin that confuses users and fragments the development. Marsland makes a strong case. Having a faster release cycle for WordPress core, is something the core team has been kicking around, but it doesn&#8217;t seem to materialize. </p>\n\n\n\n<p>The deployment of a major WordPress release is coupled with quite a few manual processes. There are many hands needed for a 2-month release cycle. Just look at the <a href=\"https://make.wordpress.org/core/6-2/\">release squad for 6.2</a>. There are around 20 people involved just for the release alone. The total number of contributors was  over 600. Getting that group together for more releases has been a struggle in the years that planned for four releases instead of the three recently. </p>\n\n\n\n<p>In contrast to that, a Gutenberg plugin release every two weeks, is mostly automated and takes about one to three people to put a release together, with 60 to 70 contributors merging PRs for the release milestones. As long as those release processes between WordPress core and Gutenberg plugin are not synced up, keeping new feature development in the Gutenberg plugin seems to be a very WordPress-y solution. </p>\n\n\n\n<p><strong>Anne McCarthy</strong> published the next call for testing: <a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\"><strong>FSE Program Testing Call #23: Rapid Revamp</strong></a>. Following the instructions it will give contributors great insight in the features slated for 6.3 and their feedback will be instrumental to the quality of the user experience of many of the enhancements. If you decide to participate, you are asked to test five newly built features: </p>\n\n\n\n<ul>\n<li>Preview Block themes</li>\n\n\n\n<li>Rely on Revisions of Global Styles</li>\n\n\n\n<li>Content and template editing in the Site Editor</li>\n\n\n\n<li>Using the Command tool</li>\n</ul>\n\n\n\n<p></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>Last week we mentioned <strong>Riad Benguella</strong>&#8216;s post <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a>. <strong>Sarah Gooding</strong> picked up the topic again for the WPTavern: <a href=\"https://wptavern.com/wordpress-is-developing-a-command-center-for-quick-search-and-navigation-inside-the-admin\"><strong>WordPress Is Developing a Command Center for Quick Search and Navigation Inside the Admin</strong></a> and wrote: &#8220;Feedback so far had been generally positive, but contributors on the project will have the challenge of providing real examples of the Command Center’s benefits in order for some to fully realize the vision for this feature as more than just a fancy shortcut for power users.&#8221; The conversation continues in the comments of both posts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Hostinger&#8217;s head of content, <strong>Emma Young </strong>interviewed <strong>Tammie Lister,</strong> the first Gutenberg design lead, in this video: <a href=\"https://www.youtube.com/watch?v=_a6iywQvCkg\"><strong>How Gutenberg Empowers Users and Its Future in the WordPress Ecosystem</strong></a>. Lister shared her insights on how Gutenberg evolves through experimentation and brings practical value to its users. The show is the second episode of Hostinger Academy podcast. </p>\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<p><strong>314 Block Themes in the WordPress repository</strong> &#8211; My Three picks</p>\n\n\n\n<p><strong>WPZoom</strong> published <a href=\"https://wordpress.org/themes/foodie-blocks/\"><strong>Foodie Blocks </strong></a>&#8211; a block theme with patterns and style variations for modern Food Blogger, that offers &#8220;flexibility and customization options to showcase your culinary journey&#8221; </p>\n\n\n\n<p><strong>Roman Fink</strong>, new to WordPress.org submitted his first theme even:  <a href=\"https://wordpress.org/themes/papanek/\"><strong>Papanek</strong></a>, a theme for freelancers and agencies. &#8220;Create simple and clear landing pages effortlessly with 54 ready-to-use patterns. &#8220;. The theme as inspired by <em>Victor Papanek</em>, &#8220;an Austrian-born American designer and educator, who became a strong advocate of the socially and ecologically responsible design of products, tools, and community infrastructures. &#8220;(<a href=\"https://en.wikipedia.org/wiki/Victor_Papanek\">Wikipedia</a>)</p>\n\n\n\n<a href=\"https://wordpress.org/themes/papanek/\"><img /></a>\n\n\n\n<p><strong><a href=\"https://profiles.wordpress.org/seedwebs\">Seed Webs</a></strong>, a design studio from Thailand, added their second block theme to the repository: <strong><a href=\"https://wordpress.org/themes/pai-page/\">Pai Page</a></strong> &#8211; a one-page block theme with seven patterns and two style variations. It&#8217;s certainly a great starting point for an image heavy site. Even if you need more than one page, you can always create more templates and use it for pages and posts. </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> reviewed one theme for the WPTavern: <a href=\"https://wptavern.com/shufflehound-releases-free-lemmony-child-theme-for-agencies\"><strong>Shufflehound Releases Free Lemmony Child Theme for Agencies</strong></a> and also mentions the accompanying plugin with custom blocks: &#8216;The Lemmony Companion plugin, recommended when users install the theme, adds a handful of custom blocks that some of the patterns rely on to work. It includes blocks for a counter, icon, post featured image caption, typing text, hero auto-slider, and accordion.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>Learn.WordPress</strong> team published a few more quick tutorials for WordPress content creators</p>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-a-blog-or-news-page-to-any-wordpress-website/\">How to add a blog or news page to any WordPress website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-a-page-with-only-patterns/\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-category-templates-with-block-themes/\">Exploring category templates with block themes</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong>, at Gutenberg Hub, published a tutorial on <a href=\"https://gutenberghub.com/how-to-create-stacking-sections-in-wordpress/\"><strong>How to create stacking sections in WordPress</strong></a>. Inspired by the new Community theme <a href=\"https://wordpress.org/themes/stacks/\">Stacks</a>, Kamal teaches you how to create a similar stacking effect without changing your theme, using the Group block and some CSS magic in the Advanced CCS settings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post,&nbsp;<a href=\"https://speckyboy.com/wordpress-paths/\"><strong>WordPress Offers Two Very Different Paths: That’s a Good Thing</strong></a>, <strong>Eric Karkovack</strong> makes the case that just because there are new features coming in with the Site Editor and block themes, the tried and true classic theme is a valid path to build a site. Both paths are available and with the backwards compatibility promise that WordPress core gives, it will stay that way in the future. All the new features do is make WordPress more flexible and if users and site owners use block themes, they can modify and customize their site in ways, that is not possible with classic themes. Karkovack concluded: &#8220;This is what separates WordPress from other platforms. You aren’t stuck with a single way to do things. Sometimes this can create extra layers of complexity. But it’s arguably better than being limited in how or what you can build.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>&#8220;Did you know that you can customize core block style variations directly from theme.json?&#8221; Asked <strong>Justin Tadlock</strong> <a href=\"https://twitter.com/justintadlock/status/1662127521960165377\">on Twitter.</a> In his latest post on the WordPress Developer Blog,  <a href=\"https://developer.wordpress.org/news/2023/05/customizing-core-block-style-variations-via-theme-json/\"><strong>Customizing core block style variations via theme.json</strong></a>, Tadlock shows you how, and also points to additional enhancements that are being worked on. </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=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Nick Diego </strong>published <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a> on the WordPress Developer Blog. He explains: </p>\n\n\n\n<ul>\n<li>How to get started <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#getting-started-with-client-side-filters\">with client-side filters</a></li>\n\n\n\n<li>How to <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-by-block-attributes\">restrict settings by block attributes</a></li>\n\n\n\n<li>How to restrict settings<a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-by-user-permissions-and-post-type\"> by user permissions and post type</a></li>\n\n\n\n<li>And how to restring <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-based-on-block-context\">settings based on block context</a></li>\n</ul>\n\n\n\n<p>The recording of this week&#8217;s Hallway Hangout with the same topic is now available on WordPress.TV. In this information conversation, <strong>Nick Diego</strong> and <strong>Justin Tadlock</strong> talked and demoed the various use cases described in the above post and answered questions from the audience. <a href=\"https://wordpress.tv/2023/05/25/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\"><strong>Hallway Hangout: Curating the editor and building block themes for&nbsp;clients</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><br />In Episode 56: of the WP Briefing, Josepha Haden Chomphosy had two guests on the show: <strong>Rich Tabor</strong> and <strong>Adam Zielinsk</strong>i who discussed <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\"><strong> What to Know About WordPress Playground</strong></a>, its capabilities and promise for WordPress eco system. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the latest episode of the WPTavern Jukebox podcast, Nathan Wrigley talked to <a href=\"https://wptavern.com/podcast/77-mario-santos-and-luis-herranz-on-what-the-interactivity-api-is-and-how-you-can-use-it\"><strong>Mario Santos and Luis Herranz on what the interactivity API is and how you can use it</strong></a>. The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used and how it can be implemented.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The recordings of episodes 6 and 7 of <strong>Ryan Welcher</strong>&#8216;s Series of <em>Bring me your Issues</em> Live streams are now available on YouTube: </p>\n\n\n\n<ul>\n<li><a href=\"https://www.youtube.com/watch?v=aGqxuQNSBpQ\"><strong>Reviewing Gutenberg 15.6 Features | Bring Me Your Issues #6&nbsp;</strong></a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=GEXQeaSdIcc\"><strong>Bring Me Your Issues #7! Live stream from May 4, 2023</strong></a></li>\n</ul>\n\n\n\n<p>On Twitch, Ryan Welcher started the series: <strong>Creating a block theme for developers.</strong></p>\n\n\n\n<p><a href=\"https://www.twitch.tv/videos/1823056725\">Part 1</a> and <a href=\"https://www.twitch.tv/videos/1828949648\">Part 2</a> are available on Twitch and will soon come to YouTube.</p>\n\n\n\n<p>Welcher used the work-in-progress started them, <strong>Justin Tadlock</strong> has been working on. If you&#8217;d like to follow along, the theme is available on GitHub, <a href=\"https://github.com/justintadlock/first-draft\"><strong>First Draft</strong></a> </p>\n\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: Auto-generated wooden machine by AI via Imajinn plugin </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, 27 May 2023 12:45:29 +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: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:47:\"BuddyPress: Happy 20th anniversary to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=329739\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://buddypress.org/2023/05/happy-20th-anniversary-to-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:712:\"<h2 class=\"wp-block-heading has-text-align-center has-text-color\">Happy&#8230;</h2>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://wp20.wordpress.net/\"><img width=\"873\" height=\"351\" src=\"https://buddypress.org/wp-content/uploads/1/2023/05/happy-20-th-anniversary-wp.png\" alt=\"\" class=\"wp-image-329740\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>BuddyPress wishes a great birthday to WordPress, and wishes all local WordPress communities to have great celebrations about it.</p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"?\" class=\"wp-smiley\" /> Have fun! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.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:\"Sat, 27 May 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: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: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:53:\"WordPress.org blog: Celebrating 20 Years 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=14981\";s:7:\"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/05/celebrating-20-years-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5408:\"<p>You did it and I think congratulations are in order! You, dear WordPress enthusiast, have helped WordPress thrive for the past 20 years. It’s an incredible accomplishment, and I couldn’t be more thankful.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Did you know: WordPress is seven years older than TikTok (<a href=\"https://en.wikipedia.org/wiki/TikTok\">2016</a>), came four years before Tumblr (<a href=\"https://en.wikipedia.org/wiki/Tumblr\">2007</a>) and the first iPhone (<a href=\"https://en.wikipedia.org/wiki/IPhone_(1st_generation)\">2007</a>), beat Facebook to market by about a year (<a href=\"https://en.wikipedia.org/wiki/Facebook\">2004</a>), and is about five weeks older than Tesla (<a href=\"https://en.wikipedia.org/wiki/Tesla,_Inc.\">July 2003</a>).</p>\n</blockquote>\n\n\n\n<p>May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little <a href=\"https://wordpress.org/about/\">forked b2/cafelog</a> to create <a href=\"https://wordpress.org/documentation/wordpress-version/version-0-70/\">WordPress Version 0.70</a>. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>You can read about the first 20 years of WordPress in two parts:</em><br /><a href=\"https://wordpress.org/book/milestones/\">Milestones: The Story of WordPress (2003 &#8211; 2013)</a><br /><a href=\"https://wordpress.org/book/\">Building Blocks: The Evolution of WordPress (2013 &#8211; 2023)</a></p>\n</blockquote>\n\n\n\n<p>Whether you celebrate at one of the <a href=\"https://wp20.wordpress.net\">100+ meetup</a> events, are strutting your stuff in some <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">limited edition WP20 swag</a>, or joining in a collective <a href=\"https://wp20.wordpress.net/live/\">reflection on WordPress</a> in your unique way on social media, WP20 is a celebration of you – the WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Common Legacy</h2>\n\n\n\n<p>As I scroll through the amazing photos and memories shared on social media of past WordCamps and meetups, I think about the people who got WordPress to where it is today. The thousands of contributors who patched bugs and tested new features; organized events and fostered community; or wrote documentation and translated strings — how those contributions paved the road we travel today. A road that allows more people across the globe to use WordPress and contribute to WordPress, advancing the mission of democratizing publishing and giving us a little more freedom in the world. To the giants on whose shoulders we stand, those unsung, tireless, and passionate committers working through long nights and longer weekends: all of WordPress thanks you!</p>\n\n\n\n<p>The dedication to and support of open source software has and will continue to ensure that WordPress endures for another 20 years and beyond.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>the freedom to build.<br />the freedom to change.<br />the freedom to share.</p>\n</blockquote>\n\n\n\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement becomes. And WordPress benefits, not just the present community, but future generations of contributors, entrepreneurs, educators, and enterprises large and small alike.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Shared Future</h2>\n\n\n\n<p>If the last two decades are any indication of what lies ahead, then wow, the opportunity to innovate, lead, and sustain a versatile publishing platform will be profound!</p>\n\n\n\n<p>Looking ahead at the next few years, our community will navigate <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Phases 3 and 4</a> together, delivering features that bring easy collaboration and multillingual support directly into the software. These next steps for WordPress will ensure our legacy of creating useful, relevant, and reliable software remains strong while keeping in mind the core elements of our mission regarding accessibility, performance, and stability.</p>\n\n\n\n<p>By renewing our emphasis on the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> program, and continuing to elevate our standing, we can make WordPress the household name it deserves to be. We can be more recognizable in known growth markets such as the enterprise and education sectors, but also every community beyond the open source and developer communities. Opportunity abounds!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When a great ship is in harbor and moored, it is safe, there can be no doubt. But that is not what great ships are built for. </p>\n<cite>Clarissa Pinkola Estes</cite></blockquote>\n\n\n\n<p>There is no time like the present to invest in the future of WordPress. The community is the greatest asset within the WordPress ecosystem. This means every WordPress user, from casual bloggers to enterprise extenders, is invited to rediscover all that our community means and does, and how each one of us can further our positive impact.</p>\n\n\n\n<p>Through all our planning, both short- and long-term, we can ensure that WordPress never loses sight of its user. Each one of us individually, and together, can do our part to make WordPress better, just as we have done each day for the past <a href=\"https://howlongagogo.com/date/2003/may/27\">7,305 days</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 May 2023 05:27: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: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: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:93:\"WPTavern: WordPress and Drupal Co-Founders Discuss Open Source, AI, and the Future of the Web\";s:7:\"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=145487\";s:7:\"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://wptavern.com/wordpress-and-drupal-co-founders-discuss-open-source-ai-and-the-future-of-the-web\";s: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:3016:\"<img />\n\n\n\n<p>WordPress is celebrating its 20th anniversary tomorrow and recently its co-founders, Matt Mullenweg and Mike Little, joined Drupal founder Dries Buytaert together on stage at a private event for the first time on May 17. They discussed how their lives were influenced by open source and how they built their projects around the freedoms it guarantees.</p>\n\n\n\n<p>Founders of both projects expounded on the benefits of open source collaboration, and Buytaert characterized their continued improvements as an example of the <a href=\"https://en.wikipedia.org/wiki/Flywheel_effect\">flywheel effect</a>, accumulating small wins that compound over time. They discussed the early history of WordPress and how something as seemingly insignificant as <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">a comment on a blog</a> can be the first step towards building a better future for the web.</p>\n\n\n\n<img />\n\n\n\n<p>Mullenweg acknowledged that it may not be possible to reach everyone with open source philosophy so &#8220;at the end of the day you have to make the best user experience.&#8221; This has been WordPress&#8217; path over the past 20 years, working in tandem with the power of its open source license and the freedoms that has enabled for the community.</p>\n\n\n\n<p>&#8220;I consider all proprietary software to be an evolutionary dead end,&#8221; Mullenweg said. They discussed how AI is changing the developer experience. Mullenweg is optimistic about AI working with open source and <a href=\"https://wptavern.com/wordpress-contributors-discuss-how-core-can-better-enable-ai-innovation\">reiterated what he said recently on Post Status&#8217; Slack</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Open source and AI are the two mega trends of the next twenty years, and the reason they are complimentary is that GPT4 hasn&#8217;t read Shopify&#8217;s code. It&#8217;s read Drupal&#8217;s code and WordPress&#8217; code, and all 55,000 plugins and everything else, so it can write it. If you ask it to write a website, it&#8217;s going to write it in an open source thing. It&#8217;s not going to write it in these propriety things.  From an evolutionary point of view, if you go far enough into the future, someday we&#8217;ll see even our proprietary competitors &#8211; the Wix&#8217;s and Squarespace and Shopify&#8217;s of the world, actually running on open source software. </p>\n\n\n\n<p>That&#8217;s part of our vision with Gutenberg as well as why we made it an even more permissive license than the GPL. We dual-licensed it under the MPL so it could even be embedded in commercial applications, because I really think it&#8217;s so important that I want it to be in even commercial applications.</p>\n</blockquote>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=QYhIItlPPOs\">Check out the video</a> embedded below to hear this historic conversation between some of the pioneers of open source publishing on the web.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 May 2023 19:30:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:41:\"Matt: With Mike Little and Dries Buytaert\";s:7:\"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=85035\";s:7:\"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://ma.tt/2023/05/with-mike-little-and-dries-buytaert/\";s: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:351:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Last week I had the honor of being on stage at the Royal Society of Arts in London with Mike Little, the co-founder of WordPress, and Dries Buytaert, the founder of Drupal, which is one of the open source projects I have the most respect and admiration for. This is the conversation that ensued.</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, 26 May 2023 16:53:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"Do The Woo Community: The Friday Show: Local WordPress Events are the Lifeblood of the Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75214\";s:7:\"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:43:\"https://dothewoo.io/local-wordpress-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>Smaller, local WordPress events are critical to keeping the community strong and vibrant. I know that from my latest personal experience.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/local-wordpress-events/\">The Friday Show: Local WordPress Events are the Lifeblood of the Community</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, 26 May 2023 11:24:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s: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:127:\"WPTavern: WordPress 6.2 Core Performance Analysis Finds Improving Template Loading for Classic Themes Could Make a Major Impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145454\";s:7:\"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:138:\"https://wptavern.com/wordpress-6-2-core-performance-analysis-finds-improving-template-loading-for-classic-themes-could-make-a-major-impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4753:\"<p>WordPress&#8217; Performance Team has published <a href=\"https://make.wordpress.org/core/2023/05/25/wordpress-6-2-server-performance-analysis-summary/\">a summary of a core performance analysis</a> they completed in order to identify and prioritize areas for improvement. As part of this process, contributors created a <a href=\"https://docs.google.com/document/d/1R0dxV0RCeALfD5ZO25w4yuBM4fCzL2VXdqY67ygbl8U/edit?pli=1&resourcekey=0-NXgdwyfTKuuuMVbj-D7tkg#heading=h.vk12eaqoj096\">methodology</a> with a standard set of tools that can be used to collect and share profiling data for various components of the application.</p>\n\n\n\n<p>The team tested a classic theme (Twenty Twenty-One) and a block theme (Twenty Twenty-Three) configured with the <a href=\"https://github.com/WPTT/theme-test-data/\">Theme Unit Test data</a>. They tested out of the box functionality, in addition to different scenarios such as a homepage displaying the latest posts, a basic text-only page, a page with a large set of images and default blocks, and a homepage and a basic page with translation.</p>\n\n\n\n<p>These tests uncovered numerous performance issues which the team has documented with related trac tickets and detailed in the <a href=\"https://make.wordpress.org/core/2023/05/25/wordpress-6-2-server-performance-analysis-summary/\">summary</a> of the findings. The first priority identified for improvement is template loading for classic themes. </p>\n\n\n\n<p>Although WordPress contributors are blazing forward on the project&#8217;s roadmap for the block editor, with most of the headline release features focused on site editing, block theme adoption is not where one might expect it to be more than four years after Gutenberg landed in core.</p>\n\n\n\n<p>&#8220;A majority of websites still use the classic theme architecture, so improvements made here could have the largest horizontal impact,&#8221; 10-up sponsored WordPress Core Committer Joe McGill said in the summary.</p>\n\n\n\n<p>McGill referenced <a href=\"https://github.com/GoogleChromeLabs/wpp-research/pull/53\">data collected in April 2023 for the HTTPArchive</a> which uses a query based on a new HTTP Archive custom metric to detect block theme adoption. Based on this information, improving template loading and rendering for classic themes should remain a high priority. Most of the WordPress-powered web is still running on classic themes.</p>\n\n\n\n<img />\n\n\n\n<p>The summary highlights the improvements for template loading that would make the most impact: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>In the classic theme tested, the most expensive process is related to locating and rendering template parts. This starts with get_template_part(), includes the process of locating the template part files with locate_template(), and rendering the content for each template part. This whole process accounted for approximately 30–60% of the entire server response in the test results, with much of that time spent handling filesystem checks (e.g., file_exists() is responsible for 4–9% of all time measured and can likely be optimized with a cache), rendering widget blocks, etc. Given many of these filesystem checks aren’t likely to produce different outcomes often between requests, there are likely opportunities to find substantial improvements here.</p>\n</blockquote>\n\n\n\n<p>These improvements are the first of five priorities the Performance Team identified as the result of analysis. The second recommendation is to improve translation loading, as more than <a href=\"https://wordpress.org/about/stats/\">56% of all WordPress websites</a> are using translations.</p>\n\n\n\n<p>The other three priorities include improvements for block-powered sites, with the first two ringing up as the most costly operations in terms of performance:</p>\n\n\n\n<ul>\n<li>Improve handling of block registration from metadata</li>\n\n\n\n<li>Improve resolving block templates</li>\n\n\n\n<li>Improve rendering of block widgets</li>\n</ul>\n\n\n\n<p>&#8220;These efforts will likely require additional research and architectural design before engineering begins,&#8221; McGill said. &#8220;All other items identified could be worked on directly through individual Trac tickets as capacity allows.&#8221;</p>\n\n\n\n<p>The Performance Team is considering making the tooling for performance profiling more broadly available so other contributors can extend their work. In the future, they may also consider contacting hosting companies to get them to run analysis on their infrastructure and examine additional use cases, such as PHP versions, Object Caching configuration, and more. Once the methodology used for this analysis is nailed down, future efforts to improve performance may become more frequent and  easier to produce.</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, 26 May 2023 03:57: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: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:34:\"Matt: On the Design Better Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=84862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ma.tt/2023/05/on-the-design-better-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"<p>I was on the Design Better podcast hosted by Aarron Walter and Eli Woolery, we talked about jazz, generative AI, distributed work, and my journey as an entrepreneur.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 2023 17:15: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: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: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:128:\"WPTavern: WordPress; 20th Anniversary, a Mini Series. Episode 2 With Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister.\";s:7:\"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=145289\";s:7:\"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:141:\"https://wptavern.com/podcast/wordpress-20th-anniversary-a-mini-series-episode-2-with-meher-bala-robert-windisch-simon-kraft-and-tammie-lister\";s: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:98247:\"Transcript<div>\n<p>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 20th anniversary of WordPress.</p>\n\n\n\n<p>Today is a bit of a departure for the podcast. It&#8217;s the second of two episodes all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Meher Bala, Robert Windisch, Simon Kraft Tammie Lister and David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover a lot of ground, and it&#8217;s fascinating to hear their WordPress stories from the past two decades.</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 over 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 David Bisset, Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister.</p>\n\n\n\n<p>David Bisset: We have so much to talk about. We have 20 years of WordPress. We gotta condense in the next 60 or so minutes. Um, for those listening or, um, heaven and forbid if we can use AI to clean up my face. We will be putting this on YouTube maybe hopefully soon. Uh, for video perhaps. We&#8217;ll have to figure that out. </p>\n\n\n\n<p>I only promise these people audio broadcast, so I have to see if I have to have them sign another contract. My name is David Bisset. Um, I have been talking to people on the 20th anniversary of WordPress, and I&#8217;ve been asking &#8217;em a bunch of different questions, and today we have four more interesting people from the WordPress community and me to talk about some particular th and don&#8217;t worry, the, the, the, the humor gets self-deprecating, but it goes up from there. <br />The next 90 minutes, you know, it&#8217;s gonna be fantastic. I have four people here that are fantastic contr, uh, contributors and representatives of the WordPress community. Um, I&#8217;m gonna let them introduce themselves and then we&#8217;re gonna start getting into some particular areas of WordPress history that I think they&#8217;re gonna love to share some memories, and hopefully you can relate. <br />The first is Mihir. Hello Mihir. How you doing? </p>\n\n\n\n<p>Meher Bala: Hey everyone. Hi. Uh, my name is me. I&#8217;m from Mumbai, India. Uh, I&#8217;m a front end developer and a codeable expert. I&#8217;ve been using WordPress since last 10 years. </p>\n\n\n\n<p>David Bisset: Oh, good. I thought you were gonna say last week. No. All right. 10 years. Wow. I&#8217;m sorry. Go ahead. </p>\n\n\n\n<p>Meher Bala: I don&#8217;t know. <br />I think it&#8217;s more than 10 years because I quit my normal nine to five job, eight, eight years back, so it has to be more than that. Just giving 10 plus years. </p>\n\n\n\n<p>David Bisset: That&#8217;s okay. It&#8217;s okay to round. </p>\n\n\n\n<p>Meher Bala: I joined the community quite late because I didn&#8217;t know there was a community existing, especially my local and then the global. <br />So it&#8217;s been fun from the time I joined. </p>\n\n\n\n<p>David Bisset: You&#8217;re not going anywhere, are you? You sound like this is Oh, I&#8217;m fine. I&#8217;m still up on Okay. It sounds like you&#8217;re about to send off here and I don&#8217;t want this to be that type of podcast. All right. </p>\n\n\n\n<p>Meher Bala: No, no, definitely no. All right. I&#8217;m here for sure. </p>\n\n\n\n<p>David Bisset: Okay, well good. It&#8217;s glad to have you. Thank you very much for, uh, coming. Have we ever met before? </p>\n\n\n\n<p>Meher Bala: No, I have not met you. I&#8217;ve seen all your tweets. I love your </p>\n\n\n\n<p>David Bisset: Okay. We can stop there. Alright, we, Robert, Robert, uh, you&#8217;re up next? </p>\n\n\n\n<p>Robert Windisch: Yeah. I take over before, uh, David like sings in under the screen. </p>\n\n\n\n<p>David Bisset: Quickly, quickly, Robert. </p>\n\n\n\n<p>Robert Windisch: So yeah. My name is Robert. I am, um, uh, c o of Insight at WordPress agency. I&#8217;m in WordPress since 1.52. So for me it&#8217;s very e very easy. I&#8217;m so old. I can name the release I came in, which was in 2005. Um, and, and people go like, no, you were older. No, no, no, no, no. I&#8217;m a late bloomer. Like, I came in like two years already when everybody, when the, the server were already set up, the, the forums was there and I just came in, swooped up and was like, Hey, is can I help with developer stuff? And they got, and the community, German community was like, you can develop here a server admin access. So I just, uh, um, grab a hammer and then like cleaning pipes in the WordPress server community. </p>\n\n\n\n<p>David Bisset: All right. Well, good, good to have you on board, Robert. All right, Tammie. Hello. Tell us a little bit about yourself. </p>\n\n\n\n<p>Tammie Lister: Yeah. So I am Tammie. Uh, I&#8217;ve. Uh, I had to check how long, which was quite a thing apparently. Um, according to my profile, 2006. Mm-hmm. Uh, I think I, I came because I was torturing a cms, like everybody back in the day, and someone showed me that there was a better way with WordPress. <br />Um, I think I might have been a bit before that because I was kind of doing it. Um, so that was on wordpress.org and themes brought me to WordPress. So, and since then I&#8217;ve been, uh, doing various core contributions. Um, and that&#8217;s me. </p>\n\n\n\n<p>David Bisset: Yeah. Well, well, if anybody&#8217;s been word WordPress, any measure of time, I have seen you in some way, shape, or form. <br />Ah, Simon, bring it home. Hi. Bring it home. </p>\n\n\n\n<p>Simon Kraft: Yeah. Hi, I&#8217;m Simon. I started using WordPress in 2008, exactly 15 years ago. Um, I started with like, Easy front end development stuff. Worked my way a bit to the back end and at some point graduated from developing stuff myself. And now I am a product owner at Group One.  Um, and I spent like the last 10 years organizing meetups and, and wood camps and stuff like that. So I really love that part of our community. Um, and I&#8217;m looking forward to at least the next 10 years of that. </p>\n\n\n\n<p>David Bisset: Oh good. You, you&#8217;re okay. Well exercise and eat, eat a good diet and we&#8217;ll see. Uh, well thank you all and again, I&#8217;m David, if you&#8217;ve probably already know.  Um, I work, uh, I&#8217;m employed at Awesome Automotive. I run a project called WP r WP Charitable or Charitables, the products for non-for-profit organizations. It&#8217;s been a recently acquired and I&#8217;m a project manager there. I&#8217;ve been, uh, I&#8217;ve experienced with, uh, work camps. I&#8217;ve been. With Word Camp Miami started in 2008, and I think I was around and since, um, WordPress 1.5, whenever that was.  Um, that came out with, with I think, uh, themes and pages and that sort of thing. So I&#8217;ve been with, with WordPress for a while. This is not gonna be about me today. This is because I&#8217;ve talked enough in the past episodes, um, of that. So I want, I want to feel, um, we&#8217;re gonna go around. We&#8217;re gonna, I&#8217;m gonna, I&#8217;m gonna get your picks in terms of the categories we&#8217;ve selected, but this is an open conversation.  So as soon as the, the initial person gets their, gets their words out of their mouth, you&#8217;re feel free to have a discussion and I&#8217;ll, uh, I&#8217;ll poke up accordingly. So, Mihir, um, Let&#8217;s start with you. Uh, let&#8217;s talk about, one of the things that we wanted to, wanted to talk, and this is gonna be a little bit different than if you&#8217;re, if you&#8217;re listening right now, you&#8217;ve listened to the others.  These are slightly different topics and categories I wanted to touch on here, cuz these, cuz I wanted to get some, there&#8217;s so much to cover for WordPress&#8217;s. 20th, 20th anniversary in 20 years. There&#8217;s so much to cover. So I wanted to make sure we, we, on some of the shows and some of the people I talked to, we, we kind of varied our discussion points. </p>\n\n\n\n<p>So first thing we wanted to cover was a memorable design or refresh in WordPress history. Now, some people ask me, well, does this mean this? And does this mean that, um, does this mean project or does this mean that I, when I ask these questions, they&#8217;re open for interpretation. So I am not looking, I am looking for something within a scope.  But wherever you read that question, you can go from there. So what Mihir, what was your. Memorable design or refresh and WordPress history? </p>\n\n\n\n<p>Meher Bala: Uh, my memorable was 1.3. Uh, one was having a multisite built in the co. Mm-hmm. And one was a 20, uh, 10th heme, which was most stylish, more simple and very readable to normal users who, you know, what, just wanna run the WordPress as a blog because blogging had just begun and everyone was using WordPress. So for me it was, 3.0. </p>\n\n\n\n<p>David Bisset: Yeah. Uh, I was a big multi-site fan back in the day, and I remember he had to download two versions of WordPress. Yes. Uh, and that was, and that&#8217;s, but that was, um, and see that was the, what was the theme again? What was the year 2010? </p>\n\n\n\n<p>Meher Bala: 2010 was it? Uh, 2010 was a theme. The year was, uh, 2010. </p>\n\n\n\n<p>David Bisset: Right. That makes sense. I was trying to, I was trying to pull up what it looked like, cuz I&#8217;m drawing a blank. Remember we were talking about, um, </p>\n\n\n\n<p>Meher Bala: it&#8217;s the white banner on top. </p>\n\n\n\n<p>David Bisset: Oh, there it is. Yeah. I remem Oh yes. Oh my goodness. Yes. That was with the trees in the road. Yes. Is the default picture. Yeah. And it&#8217;s kind of hard to describe audibly, but if you just do WordPress 10,000 theme in Google images, you get all the clones appearing and there is some, there was a little bit of styling there, but it was mostly what blogs, what the typical stylish, simple blogs were back then.  It was like a large hero image or a large full width image. And then you had your two columns, right? </p>\n\n\n\n<p>Meher Bala: Yes. It was something new for a lot of people. </p>\n\n\n\n<p>David Bisset: Well before that, not too much before that. I don&#8217;t know if there was another word. I, I forget when WordPress year theme started, was this the first one? </p>\n\n\n\n<p>Tammie Lister: That was the first default theme? That was the first, that was second one. No, that was the first official default theme. Mr. </p>\n\n\n\n<p>Simon Kraft: Well, there was Kubrick before that. </p>\n\n\n\n<p>David Bisset: No, I see. Dang. I lost a bet. Years. Yeah, because yeah, I was, I, I should have said that&#8217;s the first default theme that was named after years because we had Kubrick for like four or five years before that.  Oh yeah. So this is kind of memorable because this </p>\n\n\n\n<p>Tammie Lister: is the first default, the one that started the default years <br />David Bisset: because we got so sick and tired of looking at that, uh, Corick theme. No, I mean, it was nice and pretty, but I mean, it&#8217;s like my kids, I can only look at &#8217;em so much before I need something new, new, new to glance at. <br />So, but yeah, it was perfect. But, alright, so I think that&#8217;s pretty memorable. Nice. Round number 3.0, multi-site, no more Kubrick, first year theme. I agree. That&#8217;s a pretty good design moment in WordPress history. Um, let&#8217;s, uh, so Robert, what&#8217;s your, yeah, what&#8217;s your, what&#8217;s your big, uh, design moment that you wanna share? </p>\n\n\n\n<p>Robert Windisch: So, so first, Mihir taking multisite from me, like, uh, we have a conversation next, next word camp like, and from me by the way. </p>\n\n\n\n<p>David Bisset: So is that your, was that gonna be your pick? </p>\n\n\n\n<p>Robert Windisch: No. Yeah. Uh, I&#8217;m the multi side person. Yes. </p>\n\n\n\n<p>David Bisset: Oh. Oh, see, we already have our first </p>\n\n\n\n<p>Meher Bala: right after three, so. </p>\n\n\n\n<p>Robert Windisch: Yeah, yeah, yeah. That, that&#8217;s totally, it&#8217;s, it&#8217;s, you, you are the first one. Um, and I am, I shying away from other things because I want, I know Tammie wants to, wants to mention that that one thing that end ends with a number, probably this, the design refreshed, but like, I, I give Tammie the, um, the, oh, no. Okay. I can take it. I can take it. Okay. </p>\n\n\n\n<p>David Bisset: See, you try to, you try to be a nice human being. Well, well, </p>\n\n\n\n<p>Robert Windisch: yeah, yeah, yeah. Yeah. Because like, I, I&#8217;m the second one, so, um, but I have, like, you are welcome to that one. Yeah. But that&#8217;s my, would be my second pick. So, um, so I would, with the, with the biggest like, design, uh, um, like seismic shift from like, uh, from, from the, from the feeling was when the, when the menu went from the top to the left. Like that. That was like that. I have no idea when this was. Like, I&#8217;m very bad. Right? Like it was eight ago. </p>\n\n\n\n<p>David Bisset: Menu went from the top. You mean the admin making </p>\n\n\n\n<p>Robert Windisch: the WordPress menu was in the top third </p>\n\n\n\n<p>David Bisset: one? Yes, it was. Cuz I remember in one five it was, but I, I can&#8217;t, I can&#8217;t remember now. You&#8217;re gonna have to make me look things up. </p>\n\n\n\n<p>Robert Windisch: I, I would guess, but I&#8217;ve, I&#8217;ve, I&#8217;m bad with like, because it&#8217;s, so we&#8217;re currently talking about like between like which dinosaur were alive when this happens. So that&#8217;s why it&#8217;s, it&#8217;s so, it&#8217;s so far off. And I will simply say like, uh, the biggest, like design wise for the future, for the user interface was really when the, when the top menu, which was not like, it could not scale because you had, uh, determined like link in the menu. We experienced that in the WordPress org menu also that we have a problem with, with link there. So, so that was for me, like a, a, a big, um, like design visible decision that, um, was, was made and then, Like, it&#8217;s now the current, the current way of the WordPress backend. </p>\n\n\n\n<p>David Bisset: Okay. For now, I&#8217;ll, we&#8217;ll, I&#8217;ll, I&#8217;ll guess that it was around 2.0 cuz I remember it being in one five and it was pretty, and I started using one five, but very quickly after I started using it. Like, I don&#8217;t remember the top stuff match for very long, so I mean, I&#8217;ll be, I&#8217;ll be Googling to fill that in, but, okay. Well, we&#8217;re gonna, we&#8217;re, we&#8217;re gonna put 2.0 as a placeholder, but That&#8217;s right. It&#8217;s, and just fortunately, I mean, we think the sidebar is a bit of a mess today. Although the stuff that we had, just imagine if it was a top-down navigation menu in the admin. </p>\n\n\n\n<p>Robert Windisch: Yeah. All the, all the, uh, like upsell things now in the top menu bar, that would be like, lovely. What would it be? </p>\n\n\n\n<p>David Bisset: Why, how would that work? You, we all the plugin authors have to add like a second navigation, second dropdown. It&#8217;s like a mega menu. </p>\n\n\n\n<p>Simon Kraft: We just, we&#8217;ll just like break and add another line, and you have a huge block on top of every Diamond page. </p>\n\n\n\n<p>David Bisset: Tammie&#8217;s miming all of the facial expressions as we&#8217;re talking here. That&#8217;s fine. All right, okay, well, Tammie, now it&#8217;s your turn. Robert, I&#8217;m gonna get back to you on a version number on that exactly, because </p>\n\n\n\n<p>Meher Bala: I think version number&#8217;s, uh, 2014. </p>\n\n\n\n<p>David Bisset: Okay. That&#8217;s a year. That&#8217;s close. That we&#8217;re, we&#8217;re, we&#8217;re getting closer now. So 2014 is the next clue. 2014, the menu came inside. So that&#8217;s four years after the 2010 theme. I know I can do math, but I mean, that would mean it would be greater than WordPress. </p>\n\n\n\n<p>Robert Windisch: No, no, no, no. The the menu, the, the, the, the, it was was already decide when the, when the other thing that I want to mention later, uh, um, come, come. </p>\n\n\n\n<p>David Bisset: No, don&#8217;t ruin it. Don&#8217;t worry, don&#8217;t worry. We&#8217;ll figure it out. All I know is that I was. Yeah, all I know is that, um, there&#8217;s probably dirt younger than the version number that we&#8217;re gonna find, but anyway. All right, Tammie, time, time to go from miming to audio and sharing your, uh, the biggest or most memorable design moment. And this should be right up your alley </p>\n\n\n\n<p>Tammie Lister: 2005 and it&#8217;s Kubrick. And the reason is, if you speak to most people that got their visuals or, or some front end work in WebPress, uh, have been around for a while, they got their start because of Kubrick. That was one of the themes that got them into it. Or they started tinkering around with themes. Um, it was one of those themes that you like cut your teeth on, you learnt with, so that, I know we were kinda saying it was around for a while, but honestly it&#8217;s what. Most of us learn how to theme from. So for me, I think it&#8217;s the most memorable design. Um, mainly for cuz of the gradient. If you think of Kubrick, you see the gradient. So that&#8217;s the one for me. It&#8217;s gotta be Kubrick. </p>\n\n\n\n<p>David Bisset: Well, for me personally, I may have mentioned this on another episode, um, but Kubrick wasn&#8217;t just another design or even a design that stayed for a long time. It was when WordPress was really starting to get popular for blogs. Yeah. And I think visually speaking, at least for me, that whenever you ha if you wanna get a couple of screenshots or photos or memories Yeah. Of just how, when blogging got popular, Um, yeah. </p>\n\n\n\n<p>Tammie Lister: Would, and I set the tone. Yeah. So many people just were never color gradient or had that big header and that header format stayed for a very long time. The big headers. We&#8217;ve only just very recently stopped having big headers in our designs and kind of started moving away from the big header design and realizing you don&#8217;t have to have that in every design, so, </p>\n\n\n\n<p>David Bisset: well, you know, what they say about big headers. <br />What&#8217;s that? </p>\n\n\n\n<p>Tammie Lister: Um, for, for me, I feel that you, you can&#8217;t really include this list without saying that because it feels quite seminal to Yeah. What you learn and at the front end, the code level, because we really learn how to create themes from it as well. Oh yeah. </p>\n\n\n\n<p>David Bisset: Iconic. Iconic, very good choice. So, yeah, we&#8217;ve had, um, WordPress 3.0, our mystery WordPress 2.0 theme that we&#8217;re gonna go to do, and, uh, Kubrick 2005. So, uh, Simon, what I, can you share with us what your memorable, uh, design. Moment is in our WordPress history. So far we&#8217;ve, we&#8217;ve, and I&#8217;m, so far, I&#8217;m glad we have stayed in the past, but are you gonna, are you gonna be there with us, Simon, or are you edging a little closer to the future? Like pick something from the future? Um, no, I mean, I meant far past. </p>\n\n\n\n<p>Simon Kraft: Yeah. Okay. I, I think mine is not that, that long ago. Well, it should be like 10 years. Um, Robert already, um, alluded to it. Um, I pick MP six, the, the redesign of the word presentment interface. Um, </p>\n\n\n\n<p>David Bisset: see, you hear that Si Simon. That means I can Google it and get a year versus Roberts description </p>\n\n\n\n<p>Simon Kraft: it should be what? Press 3.8. </p>\n\n\n\n<p>David Bisset: Well, I&#8217;m not gonna fact check- </p>\n\n\n\n<p>Robert Windisch: just keep in mind the new redesign of the interface. <br />Simon Kraft: Yeah, yeah. It, it&#8217;s just 10 years old. That&#8217;s, that&#8217;s still good. Um, and that was was a point where I really started. Loving the way the WordPress back end looks, because before that it was, it was cool, it was nice, it was usable. <br />Uh, but with that, it felt like really fresh and still to a certain degree does, uh, today. And I think there were a couple of smaller, um, redesigns, I think WordPress 5.7 at the standardization of, of colors or something it was called, where we had a bit more contrast, a bit more unified set of colors, which is also very nice. I came to really love that. But that&#8217;s the interface on the web that I interact with, like every single day of every year, ever since. Uh, so that&#8217;s, that&#8217;s quite cool. </p>\n\n\n\n<p>David Bisset: I, it looks like, to me, the, I mean, I think this plugin was around a while before it actually officially came out in the WordPress police, because I&#8217;m finding posts from 2013. Um, and do you remember why it was called MP six? I mean, must stand for something </p>\n\n\n\n<p>Robert Windisch: Tammie doesn&#8217;t know. Nobody knows here. </p>\n\n\n\n<p>David Bisset: Yeah. I&#8217;m looking at, </p>\n\n\n\n<p>Tammie Lister: I think it was a project name. </p>\n\n\n\n<p>David Bisset: It had to be Matt, think it was, it had to be probably Matt or who, or I forget the original designer or the original project creator cuz I&#8217;m, cuz this was nine years ago. </p>\n\n\n\n<p>Tammie Lister: It was a group, group of people who created it and got together. <br />It was one of the first projects where a group of people got together and created it and kind of worked on it. Um, it was kind of the first attempt at that, um, to get kind of designed, done collectively, I guess. </p>\n\n\n\n<p>David Bisset: Yeah. Was that the first, what do you call them? Um, project plug-ins. No, that&#8217;s not the right word. Um, feature. I&#8217;m not even sure. Feature plug-ins turns back then. Yeah. Cuz this, would this been considered plugins or anything? Yeah. Yeah. I mean, the term didn&#8217;t exist, but it was, I think it was probably one of the first quote unquote feature plugins. Right. Yeah, I mean without that we&#8217;d still be looking at the uh, um, now if I can find a screenshot between Robert&#8217;s Pick and Simon&#8217;s Pick for the WordPress admin where the, it was side navigation, but it&#8217;s still an before MP six. Man, I can&#8217;t remember it. </p>\n\n\n\n<p>Robert Windisch: People, people will not, people will not like if you show them MP six, it looks very like the current, um, interface. So that&#8217;s why, um, oh yeah, we don&#8217;t change anything. Just need to like the pre, the pre MP six phase, because that was the new redesign, as I always, I cannot, I cannot emphasize nothing. That was how new this was for, this was for the WordPress people, and we are like, finally someone is investing in the WordPress Pega interface. So that was really like a, a, a jump in in, in, um, in user, in, in, um, user interface, um, and, and usability of WordPress. </p>\n\n\n\n<p>David Bisset: It had a bunch of new dash icons, remember, da remember Dash icons. Um mm-hmm. For those of us who know what those are a redesigned widgets page by Sean Andrews from his Widgets project. If, uh, P six included that. Wow. I didn&#8217;t, I totally forgot about the widgets project. Improvements to the customizer color schemes. Is this, is this when we got our color schemes like Ectoplasm or some, I wonder if that&#8217;s Yep. </p>\n\n\n\n<p>Tammie&#8217;s shaking her head vigorously guess. And a new midnight color scheme. So that&#8217;s, thank you, Debbie. Thank you Sarah from 2013 for helping us remind that. Well, that sounds fantastic. So we have stayed. We have stayed pretty, pretty well pre 2015 pre Gutenberg. That&#8217;s a i I applaud you all for the biggest, most memorable design moments, not being part of, uh, anywhere beyond the 5.0 release of WordPress. </p>\n\n\n\n<p>Thank you. So just to, just to rehash here, Mihir, uh, WordPress, uh, 3.0 multi-site and the first year themed theme. Um, yes, Robert, uh, we&#8217;re still gonna hunt for a version specific for that, I assure you. But when the, but we&#8217;re talking about when the big jump made from moving navigation from the top to the left hand side. </p>\n\n\n\n<p>Uh, we&#8217;re gonna guess that&#8217;s 2.0 WordPress for now. Kubrick, who could forget Kubrick? We didn&#8217;t. Tammie thought that was, and that probably one of the most fundamental images and thumbnails representing the blog when blog blogs went. We&#8217;re in its heyday when movable type was, was starting to fade and WordPress jumped on the scene, how iconic. </p>\n\n\n\n<p>And then MP six, Simon picked that. And that of course is just, you know, we still have that with us today. And that&#8217;s been, it&#8217;s been, been probably, it&#8217;ll probably around 10 years. So, Fantastic. Well, uh, from design-wise, I really don&#8217;t have much to, to say in this department. Um, I, I think we&#8217;re, I think the early version of WordPress that introduced pages was great, but that&#8217;s not really much of a design feature. </p>\n\n\n\n<p>That&#8217;s just, I think it did open it up for a little bit more design. Um, I, if I had to pick something, I, I don&#8217;t know if this would be my most memorable, but I use it every day. It is the redesign of the WordPress site, um, wordpress.org. Um, a lot of people don&#8217;t remember how that looked way, way, way, way back then. </p>\n\n\n\n<p>Um, with, and then it was all split out into various groups, uh, various categories as we have them today, you know, core and design and plugins and, and all of that. Um, I don&#8217;t know, maybe I&#8217;m, maybe this is an old person talking, but it was really, really clunky and really plain back in the early days. And now with the learn.wordpress.org and the redesign stuff&#8217;s, it&#8217;s happening. </p>\n\n\n\n<p>It&#8217;s looking so much more professional and grown up maybe is the, is the best word I can describe it in. But anyway, that&#8217;s, that&#8217;s just me. And maybe for, I will share some, if I can find some old screenshots of that, which I couldn&#8217;t initially, um, I would love to, love to share them with you. So let&#8217;s move on to our next category. </p>\n\n\n\n<p>Mihir, you are up again. So we are talking about the most notable enhancement to WordPress core that isn&#8217;t Gutenberg related. So I definitely, so I definitely put that. That, that qualifier in there, because I think that would be way too easy. Um, we in way too broad. Um, and when I say most notable enhancement to WordPress core, that means this is, um, it, it had to appear in WordPress core at some point. </p>\n\n\n\n<p>Maybe it&#8217;s something that&#8217;s not there anymore or maybe something that it was acquired or merged into WordPress core. Didn&#8217;t have to start there, but it was something, a most notable enhancement to WordPress core. And I had some people say, well, what do you mean by enhancement? Do you mean coding wise or design wise? </p>\n\n\n\n<p>Again, this is up to your interpretation. As long as you don&#8217;t say the G word, we will be Okay. Mihir. So go ahead. What is your most notable enhancement to WordPress Core? We had no guten, guten free. </p>\n\n\n\n<p>Meher Bala: Mine is the events, uh, widget on a dashboard. </p>\n\n\n\n<p>David Bisset: I&#8217;m sorry, say that again. My, my ears exploded. What was that? </p>\n\n\n\n<p>Meher Bala: The event widget. </p>\n\n\n\n<p>David Bisset: Oh, the event widget, yes. Ooh. This is why I like talking to people that are above the age of 18, cuz that&#8217;s all I have in my house for, for like a week, every week. The events widget. Oh, tell us, tell us a little bit about that in case people have have forgotten about that. </p>\n\n\n\n<p>Meher Bala: So, uh, whenever there&#8217;s any, uh, meetup happening or WordPress happening, uh, in your locality, the events are displayed there. </p>\n\n\n\n<p>And in our local, what I noticed is once the widget came out, a lot of new people who didn&#8217;t know the community started, you know, attending meetups, started interacting with the community. So we had a few different people at every meetup. So that&#8217;s something which is memor, which is. </p>\n\n\n\n<p>David Bisset: That for me is an amazing pick. I never would&#8217;ve thought of that. And apparently you did. </p>\n\n\n\n<p>Meher Bala: I see the community grow even with that. So for me, that&#8217;s still in the mind more than Gooden book. </p>\n\n\n\n<p>David Bisset: That&#8217;s amazing because not only does it serve, did it serve a purp? I I, I can&#8217;t remember if this is when people realize meetup.com was crap. I can&#8217;t remember exactly when. Uh, sorry. Meet, sorry, or sorry to our sponsor meetup.com by the way. Um, I love you. Uh, so mom, uh, who works there? So, meetup.com was probably the only way WordPress people were fighting each other at the time. I do you have a, do you know when that, I guess we&#8217;re gonna have to find out when that came about cuz I have no idea. </p>\n\n\n\n<p>Simon Kraft: That was WordPress 4.8. </p>\n\n\n\n<p>David Bisset: And do you have a year for that? No. Oh, well, now that we know a version number, hello. Welcome to a podcast, but we&#8217;re doing our research live on the air. Thank you. 2017. 2017 or something like that. <br />Robert Windisch: Welcome. Welcome to a normal community conversation, by the way, we don&#8217;t, we don&#8217;t run around and no version numbers and years. <br />We just go like, do you remember this feature? Oh my God. That&#8217;s it. <br />David Bisset: You get what you pay for the hallway track. People are getting what they </p>\n\n\n\n<p>Tammie Lister: for when someone get, gets their phone out and starts tapping and then finds it, and then you go, oh yes, </p>\n\n\n\n<p>David Bisset: someone&#8217;s rolling their eyes right now and starting a letter. <br />Dear David, oh, well </p>\n\n\n\n<p>Tammie Lister: I can&#8217;t believe they didn&#8217;t know that. </p>\n\n\n\n<p>David Bisset: David Professional in quotes, uh, we have that before that 2017. The reason why I was wanting a year is because that is before I think Slack and where Press Slack, I believe. </p>\n\n\n\n<p>Robert Windisch: No, no, no. Slack was, slack was uh, in civil already. Slack was there. </p>\n\n\n\n<p>David Bisset: So, yeah. Okay, so. I don&#8217;t wanna pinpoint it, I guess. Yeah. Cuz 20, I remember a community summit when they made the announcement, but 20, that could have been as early as 2015. So if that widget came out in 2017, there was still ways. I guess the two top ways you would know about WordPress community would be meetup.com was still probably the biggest way there. <br />And then maybe if you were on WordPress Slack at the time. Right. </p>\n\n\n\n<p>Robert Windisch: Yeah, but meetup media.com was the, we, we, so we decided on media.com because I remember the conversation we had internally be, Hey, let&#8217;s build this. And like, people who know project management was, was like, um, you know, that we want to do democratizing publishing, not democratizing events here. </p>\n\n\n\n<p>So, so that&#8217;s why luckily we decided to simply give meetup.com money and let they run all of this. And we simply like hooked the meet, hooked the Meetup API into their system and was simply like, um, doing, let them do all the work. <br />David Bisset: Oh, I was talking, when I talk about meetup.com, I talk about the interface on meetup.com because my experience with it was, I was running meetups through meetup.com and creating the meetups, um, even searching for meetups, and I&#8217;m, I&#8217;m sure it got better over time. </p>\n\n\n\n<p>I think Amaz, coincidentally enough, is when Weber, when there was that single. Page for the WordPress meetups. Like you said, they, I think there was some, some deal with the, uh, with, um, with, I don&#8217;t know. I would, I&#8217;m gonna guess WordPress Foundation on this was, was involved or something, but before a while you would just have random spots of communities on meetup.org. </p>\n\n\n\n<p>Which org, which was hard to find. That&#8217;s the experience I remember cuz I was running one of those meetups, or two of them actually for a while. And then there came a time where everything was under one umbrella. Organizational wise, I think it had a dedicated page and probably, I&#8217;m guessing at that time is where the widget would probably start pulling that kind of information. </p>\n\n\n\n<p>Right. Cuz it&#8217;s all centralized Meetup. It&#8217;s probably, it&#8217;s probably, um, like a meetup organization or something like that. So apologies for me getting it a little confused. I think it did get better, but I, I remember once we had that widget, I pointed people toward the widget and we would have meetups where I said, how many people found us through the widget and we always had one or</p>\n\n\n\n<p>two people at our meetups raise their hand. So I think that&#8217;s an amazing pick. Does any, did, doesn&#8217;t, does any, I I&#8217;m seeing a few people nod. So is that your experience as well, Simon? </p>\n\n\n\n<p>Simon Kraft: Yeah. I think our meetup in, in Germany, multiple meetups in Germany, like grew tenfold or something in the year following the, the, this update with 4.8. So that&#8217;s really huge for the meetup community. </p>\n\n\n\n<p>David Bisset: Yeah. So not only do we get a nice new widget on the dashboard, which doesn&#8217;t come by that often, but it had an impact on the community. So I think that&#8217;s a really cool pick. Really appreciate you take us down me memory lane and my apologies to meetup.com. Um, Robert. I believe you&#8217;re up next. Um, so again, just in case, uh, people have nodded off here listening to us </p>\n\n\n\n<p>Robert Windisch: totally like, yeah, totally fine. I can bring up something that is nothing with five. Oh, that is a feature that influenced many people and that, uh, everybody goes like, yeah, </p>\n\n\n\n<p>David Bisset: just I said Guttenberg related. Now if there&#8217;s anything else in five that wasn&#8217;t, </p>\n\n\n\n<p>Robert Windisch: no. Not even close. No, no. I&#8217;m, I&#8217;m still, I&#8217;m still in a very old feature. I&#8217;m still in three, 3.0. I&#8217;m talking about, menus. </p>\n\n\n\n<p>David Bisset: Menus. Oh, you mean like creating menus? </p>\n\n\n\n<p>Robert Windisch: Before that you needed to have pages and pages needed to have redirect because you needed to get some structure. And then the only thing to have a high, high cultural, uh, a structure where you have like a parents and chil uh, children was with pages. And that was like when people like fumbled their menu structure together with external links. And then you had a drag and drop in the WordPress back and with menus. </p>\n\n\n\n<p>David Bisset: You. Wow. That act. Wow. I can&#8217;t remember that o That was wor that was 3.0. Yeah. </p>\n\n\n\n<p>Robert Windisch: Wow. That was merged from Wu. Seems the WCI feature of menus were merged in the WordPress core </p>\n\n\n\n<p>David Bisset: wow. That&#8217;s so hard to believe. Looking back on that now, 3.0, not so, not only P 3.0 had multi-site and, and, and the new theme it had, it had the menu stuff too. That&#8217;s amazing that, that would&#8217;ve been so barbaric. It&#8217;s probably the reason why my webs </p>\n\n\n\n<p>Robert Windisch: no difference with me. No promise with me with features and breakfast. </p>\n\n\n\n<p>David Bisset: Uh, that&#8217;s so barbaric. It&#8217;s like, for a long time it&#8217;s like, why do all these WordPress sites don&#8217;t have barely have any menus on &#8217;em until this date? Co. I remember Cooper, I don&#8217;t, I might explain why my early Cooper Gays, I don&#8217;t see many, I don&#8217;t see many menus. They were on the, they were on the sidebar. A lot of the links for websites. Yeah, I re I don&#8217;t know, </p>\n\n\n\n<p>Tammie Lister: it was all a widget or, or kind of lists </p>\n\n\n\n<p>Robert Windisch: and No, that the link, the link, the link feature where you could have like defined what&#8217;s, </p>\n\n\n\n<p>Tammie Lister: that&#8217;s what it was. Cause that&#8217;s all we had. You didn&#8217;t have anything else. And then when you had early menus, you had to do those walker things. The, you only knew a few knew special magic words and more wizard. That was because it was really, really difficult. </p>\n\n\n\n<p>David Bisset: Oh wow. Okay. Well, yeah, definitely notable enhancement menus. Where could we be without menus? It&#8217;s like a, it&#8217;s like a car without, I dunno, a steering wheel or something. All right, Tammie. Uh, notable enhancement to WordPress core and no good. Yeah. </p>\n\n\n\n<p>Tammie Lister: I think I&#8217;m back at 3.0, but I want that checked custom post types is where I&#8217;m going. Uh, I feel like we&#8217;re just settling on that release, but it&#8217;s one of those releases where we just kind of, it feels like it grew up or we got the features, which then meant the, not just people could write logs or, or use, you could then pivot and grow and extend. </p>\n\n\n\n<p>That&#8217;s really what that release felt about. And custom post types, if you think about everyone that&#8217;s made a product or everyone that&#8217;s used in an agency or anyone&#8217;s done anything with WordPress, they wouldn&#8217;t have probably done that if it hadn&#8217;t been for a custom post type. So it kind of was there, or, or at least that concept. </p>\n\n\n\n<p>So, and even Emberg has the, the G word, I&#8217;m sorry, but that has the roots in that kind of thinking. So yeah, custom post types is the thing for me. That&#8217;s, it&#8217;s, <br />David Bisset: that&#8217;s, it&#8217;s, it&#8217;s. It&#8217;s really what started to make WordPress more than a blog. Like everybody&#8217;s, yeah. But then </p>\n\n\n\n<p>Tammie Lister: you could, like ex you could make it yours and you could take it your your direction and you could build on top of it. You know, we now think about like headless and doing everything you want and all that. That would not been impossible if we hadn&#8217;t started thinking about custom post types, which now sounds really like simple. Right? Um, but it&#8217;s not that back then that was radical thinking. Yes. </p>\n\n\n\n<p>David Bisset: So yeah, you could start making. And history would rather us not learn this lesson too deeply. But I mean, you, you could make a like WordPress into any sort of application you wanted to. Yeah. Yeah. Not that you should, but I mean, you could. Right. And there was, and there was already custom post types. </p>\n\n\n\n<p>Tammie Lister: It wasn&#8217;t just these pages with, with Kubrick, but it was just this flat file. You, you, I mean, as we&#8217;ve just heard, you had navigation and, and then you had these different things. You had so much in 3.0. 3.0 was basically like Christmas. </p>\n\n\n\n<p>David Bisset: Yeah. I mean, how much brain matter had this. How much brain matter was scraped off the floor at the Word camp announcement for 3.0. You know, it&#8217;s like our minds were blown so much. Just stop it. Yeah, stop it. It&#8217;s all, it&#8217;s already dead. Uh, </p>\n\n\n\n<p>Tammie Lister: yeah, but if you think back then about the upgrade paths of 3.0 as well, cuz back then it was very different as well. Let&#8217;s say we don&#8217;t have releases that are that significant now because so many things happen then it&#8217;s kind of mind blowing. </p>\n\n\n\n<p>David Bisset: Yes. It&#8217;s like you, you went out, you went to, you went to, you went to the customer saying, let&#8217;s upgrade you where this is the customer. No. Really? No. Yeah. Let&#8217;s, let&#8217;s do it. Let&#8217;s do it. Let&#8217;s, let&#8217;s go nuts. Just cup take. All right, Batman. So, all right Simon. So we&#8217;ve got an events widget, we&#8217;ve got menus, we&#8217;ve got custom post types. </p>\n\n\n\n<p>Uh, I don&#8217;t wanna put any pressure on you here, but, um, do you have something he&#8217;s gonna say entering text into a box? For the win, Alex, <br />Simon Kraft: and that, that was exactly what I was going for. Now, actually, in the first round, all my picks and the backups and their backups were picked by everyone else. </p>\n\n\n\n<p>David Bisset: But this time I, I said to come, I said To come with a sat. </p>\n\n\n\n<p>Simon Kraft: Yeah, yeah. And, but this time, every single one of my, of my picks is still in the race. And that makes it a bit hard. And I&#8217;m going for the, I think most insignificant one of them, because it&#8217;s no longer in core. And that&#8217;s something we don&#8217;t do that often. Oh, no. </p>\n\n\n\n<p>David Bisset: Um, oh, no, I think I know what it is. It&#8217;s post formats. Yes. </p>\n\n\n\n<p>Simon Kraft: Um, I, I really loved that feature back in the day. Uh, as I said, I was </p>\n\n\n\n<p>David Bisset: te Tell us a little bit about post formats, Simon. </p>\n\n\n\n<p>Simon Kraft: Yeah. I, I, I was, I was building a lot of themes back then and post formats basically had the idea that you cannot only post a post. So not just a blob of text, but also. Oh, I have lists somewhere here so I don&#8217;t have to bumble around like an idiot. </p>\n\n\n\n<p>Um, something that was called a site, like a, a small kind of update kind of post. You had a galleries, links, uh, images, quotes, a status while reading that. I&#8217;m not so sure how that compares to a site. Um, video, audio and chat. And they&#8217;re gone now. They were introduced in 3.1. Um, but they were like, that was a really fun way of, of styling different kinds of content in blocks. </p>\n\n\n\n<p>David Bisset: I remember Matt talking about it on stage, by the way, and I mean, I&#8217;m that old. </p>\n\n\n\n<p>Robert Windisch: I&#8217;m so happy that they are gone. I&#8217;m so happy that they, I&#8217;m not, I&#8217;m not at all. </p>\n\n\n\n<p>David Bisset: Robert. Robert, Robert. They&#8217;re some confusing for people. Robert, we, we&#8217;ll get to, we&#8217;ll get to your negative emotions, but let&#8217;s, I&#8217;ll, I&#8217;m sorry Simon, I interrupted. Go ahead. You were telling us about this wonderful feature. </p>\n\n\n\n<p>Simon Kraft: It was so wonderful and at some point, I&#8217;m not sure when. It was removed from Core. I think there&#8217;s still a way around that. You can still technically use it in some capacity, but it&#8217;s not an ongoing core. </p>\n\n\n\n<p>Tammie Lister: I mean, still you can also use a block now you could use a block and, and have it as a, that&#8217;s not the same. Yeah. I mean, no, you could sign it. </p>\n\n\n\n<p>David Bisset: Well, it was introduced in 3.1, it says here. So it almost made like we were writing an, we were writing high back then as a WordPress. People we&#8217;re like, oh man, 3.0 is so awesome. What&#8217;s next? What&#8217;s next? Oh, this post format stuff. Oh man, we gotta do this. And then, and then crickets. Why, why do you all think that post formats didn&#8217;t make it? </p>\n\n\n\n<p>Simon Kraft: I think, uh, blogging is not that relevant anymore. Yeah. <br />Tammie Lister: Unfortunately. So I think that&#8217;s, that&#8217;s one of the things is like, It&#8217;s very in the blogging sphere, I think it works just for blogging or not for a particular type of blogging even. Mm-hmm. Um, and there was a, you know, if you think about, what was it? </p>\n\n\n\n<p>Timelines, it was a big thing back then. I went kind of wanna bring them back, you know? Mm-hmm. Um, and like listening to, and I&#8217;m doing and status updates. It was kind of in a time before we used social media as well, so people were using their blog to post and syndicate everything on there. And people just started doing that in other places rather than their blog. </p>\n\n\n\n<p>Not saying they&#8217;re not gonna come back with, uh, the world as it is and owning your own content. But I think that because it was very particular, and then WordPress was starting to become about more broad in its terms. I think that&#8217;s the thing when we moved to plugins being about particular things rather than the interface. </p>\n\n\n\n<p>Robert Windisch: Yeah, I just want to pick on my like, negative thing that I said I, I just wanted, like in terms of the user, for the user, it was very complicated to like decide while writing. And, uh, if we are emphasizing on like for the majority of users and have it very lean, mean, uh, interface, then it&#8217;s like going like, okay, what of these seven things, is that what you currently want to do? </p>\n\n\n\n<p>And or nine or whatever it was. And it was not extendable, so it was Oh my God. So that&#8217;s why it was very, for the user, not that, that&#8217;s why I&#8217;m saying like, uh, um, it was not easy to understand and they just want to publish and then we are going like, please do this checkbox and otherwise you cannot like, start the car. <br />So that&#8217;s why I was like, um, really against, uh, the, the post format because they were against the, the, the, the directory of WordPress having like becoming easier to use for people. Yeah. And, and as much as I love the feature, I think that&#8217;s a valid reason to, to remove it. </p>\n\n\n\n<p>Meher Bala: Because even a lot of my clients. They want, they choose a, uh, post type, and they expected some result, something else came up. So a lot of people were confused. Users. </p>\n\n\n\n<p>David Bisset: I could see that. S all right, so I have here events, widget menus, custom post types, and r i p to post post formats, although I think it&#8217;s in the code somewhere, it&#8217;s, and, um, you, you can up to this point, right? </p>\n\n\n\n<p>They wouldn&#8217;t just outright kill it. They hit it and it&#8217;s still in there somewhere. And it&#8217;s just one of those few things in WordPress that had a lot of, uh, fanfare. And again, it just, for one reason or another, it just kind of fizzled a little bit. And the, and so anyway, um, so I&#8217;m, I&#8217;m gonna throw in mine. </p>\n\n\n\n<p>So, believe it or not, there is something that was once popular. And I don&#8217;t know if post formats, you could say it was popular, but I, I like to think it was at least it had a little bit of, uh, runway. There was something early on in WordPress that was popular, that was used quite a bit. And then inversion 3.5, I think at 3.5. <br />Feel free to correct me, uh, future Self that, um, it, it disappeared. Um, I&#8217;m talking about something in the admin. I&#8217;m talking about Something was, started very on in WordPress and in fact, it was part of blogging culture for a long time that if you had a blog on your website in the sidebar, I&#8217;m looking to see if peopleare starting to think about this. </p>\n\n\n\n<p>You had a list of other people&#8217;s blogs that you could l that you would link to, and that was called drum roll. Please think I broke my table. Um, blog roll. That was called a blog roll, but in the WordPress backend, does anybody remember what menu that was? No. Okay. Links. I&#8217;m All right. Thanks for reading it. </p>\n\n\n\n<p>Links. Sorry, there was a links menu. No, no, that&#8217;s right. I made, so it was the links. So I don&#8217;t know if this was in WordPress from day one. I like to think like pretty soon in WordPress it was, I couldn&#8217;t find when it was actually officially added, but I&#8217;m pretty sure I could have, I put my mind to it. But link management phase out of WordPress, from what I can see around WordPress, 3.5, um, supposedly wordpress.com added them back or something along those lines. <br />I&#8217;m not sure if they&#8217;re still there. Um, so when WordPress 3.5 links was gone, and, you know, by the time it was gone, nobody was using it. Very few people were using it. Um, it, because I remember when it was gone, it was like one of those things that like, it was, it was getting old and crusty anyway. And it had, it would needed to be taken out to the refuge, trash bin, dumpster, whatever you kids are calling it these days. </p>\n\n\n\n<p>But I remember using that as one of the first things when I started with WordPress 1.5. Cuz blog rolls were a thing, you would like link the top. Like you people were reading your blog, they wanted something similar to, and you needed something on the sidebar. And believe it or not, um, when people stopped using that, they kind of went over to menus. </p>\n\n\n\n<p>Um, like a menu widget or something, I think was, some people wanted to continue that. But yeah, the links management system blog rolls in the early days of blogging. Those were things, you know. Um, so anyway, um, r i p to R one links management. So that was for me. All right. Lastly, </p>\n\n\n\n<p>Robert Windisch: can I jump, can I jump in? </p>\n\n\n\n<p>David Bisset: Can you link to something? Sure. </p>\n\n\n\n<p>Robert Windisch: Yeah. Yeah. I, um, I cannot like, because it was also hard for me to pick something and, um, uh, Simon, do you do the other thing? Um, yeah. Okay. So, um, uh, one of the, one of the things that, um, was very, was very, very important, but it&#8217;s not like really visible to see this to people, um, is for me the, uh, the rest api. </p>\n\n\n\n<p>Um, because, um, if we talk about like what we are currently like doing with all the, the word we cannot mention here because it&#8217;s a, it is a, it&#8217;s a history show. </p>\n\n\n\n<p>David Bisset: The he who cannot be named yes. </p>\n\n\n\n<p>Robert Windisch: But without the rests api, many things currently would not be possible because that&#8217;s the foundation and like the, um, the sheer energy to put this into WordPress against all arts against, like, why do we need this? <br />It&#8217;s not a visible feature. And when everybody was like, but we need a rest api, XML L P C is not gonna make it. We need to have the future to really communicate with the WordPress backend, and this needs to be in WordPress. We really, really need this. And then we got it like, um, some base features in there, and now we have it like as the foundation of, we cannot name it here. <br />Uh, we have this, uh, foundation that if you would disable that you would like have a really a timeish and jump back in a time with the features that we are currently having. </p>\n\n\n\n<p>David Bisset: Yeah. Yeah. The rest </p>\n\n\n\n<p>Simon Kraft: and probably the next, next iteration of the WordPress interface, like WP admin. Is, I guess, very likely to also be based on the rest api. <br />David Bisset: So here are some runner-ups. Just thought I&#8217;d throw &#8217;em out there real quick. Auto updates, I&#8217;m, </p>\n\n\n\n<p>Simon Kraft: that was the one that Robert meant, uh, I, I should mention. Yeah, uh, we discussed that earlier. Um, all updates were introduced in 3.7 and changed, I guess, WordPress forever. Because since then, every WordPress website is updated, at least patched, uh, to its new version, which is really cool. <br />And until recently we, we also kept like all the, I dunno, what was the last version of, of 3.7 still supported like </p>\n\n\n\n<p>Robert Windisch: 30, something like that. 30 or 30 something. Yeah. <br />Simon Kraft: So it was really crazy that all these old versions are still still maintained to a degree. </p>\n\n\n\n<p>David Bisset: Mihir, did you? I, I had, I&#8217;m sorry. No, I&#8217;m sorry. I wanted to get Mihir. Mihir was shaking her head like a bo, like a bobblehead doll. Um, there, did you grasp auto updates because, uh, Mihir as well as everyone else, I think, because I know there was a lot of controverts in the beginning about WordPress back then. Smaller market share than it does now. Were you comfortable with auto updates, Mihir, in your, in, in your, um, decade? </p>\n\n\n\n<p>Uh, well, I&#8217;m sorry you weren&#8217;t a decade before, but how were you comfortable? Were you comfortable with WordPress updates? Initially, </p>\n\n\n\n<p>Meher Bala: no, because a lot of, uh, sites broke. That was because of the theme and the plugins. But as yours past auto updating WordPress is good because at least people have reduced saying that WordPress is not secure. <br />Yeah. When it is auto updated people, okay. Find that fine. And WordPress is secure, what we add to it with a theme or plugin. There is some vulnerability over there. </p>\n\n\n\n<p>David Bisset: So you, you, so you, you got warm to it. What were you saying, Tammie? Yes. </p>\n\n\n\n<p>Tammie Lister: Uh, I was gonna take in a different direction, so I&#8217;m checking wherever we are done on order updates. </p>\n\n\n\n<p>David Bisset: Oh yeah. Well, uh, yeah. The other two I only wanted to mention in, in, in passing was the customizer. Um, that&#8217;s kind of, we&#8217;re getting, we&#8217;re kind of seeing that maybe in the rear view mirror a little bit. For a while though, that was the true no-code interface to customizing a theme, um, of, in core anyway. And la lastly was the, um, uh, let&#8217;s see. </p>\n\n\n\n<p>I pasted a u URL in this URL does not make sense. There is also smaller things too that maybe doesn&#8217;t play to, I wouldn&#8217;t say. A huge part, but we had things like site health, um, import exporting, WordPress, um, in from core with the plugins, that sort of thing. So lots of little things. Uh, and <br />Tammie Lister: I had one from 2012, which was, uh, something that&#8217;s gonna get redesigned or reworked mm-hmm. </p>\n\n\n\n<p>Uh, in this cycle or this phase, which is the new media management happened in 2012, which sounds a long time ago for it. </p>\n\n\n\n<p>David Bisset: Yeah. I, I can&#8217;t remember what it was like before then. I think you had to draw something and mail it to your WordPress blog, </p>\n\n\n\n<p>Tammie Lister: be glad that you don&#8217;t remember it. It was, it, it was a big thing. And I think that, and even you could have picked like the old way we used to do revisions, which even now you look at revisions and you think, oh, that&#8217;s quite dated. The old way was even more dated back in the day. Um, and why I kind of thought of those ones was because they looked dated to us now, but. We are redoing them now. </p>\n\n\n\n<p>And I kind of think that that&#8217;s kind of interesting to think of. Like the cycle of like every 10 or so years is kind of when we kind of redo things, which kind of is kind Oh, that&#8217;s healthy. </p>\n\n\n\n<p>David Bisset: It&#8217;s a project. Hey, well we&#8217;re an open source. If we can get to the 10 year mark, that&#8217;s a win, right? Uh, pretty healthy actually. <br />To, just to wrap, just to wrap this section up. Um, completely forgot about revisions. Um, not that I used them too often, but, um, that and the little thing when the slider came in. Yes. </p>\n\n\n\n<p>Tammie Lister: From when we first got the sliding, </p>\n\n\n\n<p>David Bisset: I&#8217;m not sure if I took to the slider very quickly because I&#8217;m like, it&#8217;s kinda like going to the eye doctor, does a look better to you? <br />Or B, I worked on that A or B, no, it had nothing to do with the design. It had me trying to keep in my head what, and then the side by side stuff, I think, uh, wa was, was a lot better. But revisions has saved more people&#8217;s butts probably than, than one would remember. Oh. Because I, uh, that an auto save. Um, for a while, I don&#8217;t think, I don&#8217;t remember when, but I know WordPress, when it started, did not autos save your posts as you were typing them. </p>\n\n\n\n<p>And I remember Matt said, standing on stage saying, no, now your power can go out or whatever. And you&#8217;ve got that post and revisions, incl. And, and that also for me, blended into later revisions where, uh, you, you&#8217;re, there&#8217;s a previous revision. Are you sure you want to edit this or do you wanna look at that or go back to it? </p>\n\n\n\n<p>Tammie Lister: But I think back then revisions was, um, Yeah, I think I always kind of forget the words, but it was when we were trying to make things look real, I think skew morphic or something. It was like when you were trying to make like apple, uh, you&#8217;re trying to make things look real or those kind of design things. </p>\n\n\n\n<p>And I think unfortunately it did inherit a little bit from that. Um, so I think now we would go a lot more, um, streamlined. Uh, design has come on a little bit. Uh, it&#8217;s more information based. It&#8217;s more how you are gonna process. It&#8217;s more kind of quick. If you look at the way GitHub and all those kind of interfaces are now, you know, we&#8217;ve learned. </p>\n\n\n\n<p>But back then we were trying to solve a problem that hadn&#8217;t really been. Kind of comprehended. We were trying to visualize issues that we hadn&#8217;t. So it was kind of really interesting to think of like, going back to it now with everything we know about the complications of those. And now we know that people probably do want to extend those, probably do wanna export them, probably do find them useful as well. </p>\n\n\n\n<p>David Bisset: We may see a little bit of a change in this department with phase three, with the, um, multi-user stuff too. </p>\n\n\n\n<p>Tammie Lister: Oh, I think we&#8217;re gonna see a complete change in that way, at least I hope we do, because honestly, that&#8217;s not gonna scale. <br />David Bisset: Yeah. You think? Yeah, I would. Yeah. I, I always get, I get, my daughter says, I&#8217;m trying to edit up, posting your site and it says, you&#8217;re still in there. </p>\n\n\n\n<p>Can you close a tab? And I&#8217;m like, I, or I can kick you out. I&#8217;m like, fine. You&#8217;re your mother&#8217;s daughter anyway, so. Alright, so we have one last category here. Um, Mihir, you are up first. Now this category is how I described this. And I&#8217;m getting them, I&#8217;m getting these, these are getting wordier as we go along, but okay, so this is a memorable community moment or community initiative or community Cause that wasn&#8217;t a WordPress release and you&#8217;re saying, well, why did David put not a WordPress release? </p>\n\n\n\n<p>Um, well, because there have been a couple of memorable WordPress releases focused on who was releasing, who is contributing, all great things. But we&#8217;ve got a lot of that feedback in the, in the past about, oh, it was, it was, um, you know, the WordPress releases, especially the ones where, um, the underrepresented groups took over forward word press release. </p>\n\n\n\n<p>Great. That that could be counted as a community moment. Fantastic. But everybody says that when they first think of one. So I wanted us to be a little bit more tougher, no word press releases, but anything else is open game in terms of a community moment initiative or a cause. So, Mihir, I would love to hear what you&#8217;ve got to say about this. </p>\n\n\n\n<p>Meher Bala: So, For me, when I joined the community, I always, uh, like the very few women who participated and when I used to go to work camps, also the women were fewer. So I just started, you know, gathering all the women and started taking group fit pictures and it became a thing, like if I was there in Word Camp, it was, you know, I had to do a group with them because everyone got excited, new people added. </p>\n\n\n\n<p>So pre pandemic, each word camp I went to, I had, I mandatory went on stage in the lunch break and decided a time place where, you know, everyone will get together. I heard a few things, but I said, this is helping encourage other women. So I don&#8217;t see any problems, so why not? And I used to put on, put on Twitter as well. </p>\n\n\n\n<p>David Bisset: So, so, so you organ Yeah. It&#8217;s kinda encouraging someone else. What&#8217;s that? </p>\n\n\n\n<p>Meher Bala: It&#8217;s kind of encouraging another woman to be a part of the community. </p>\n\n\n\n<p>David Bisset: Absolutely. Um, so like selfies, but good, but selfies representing under underrepresented groups. I, I, they&#8217;re there. Yeah. The WordPress, I mean, you can talk about this all, all day. And this is not exclusive to the WordPress community, it&#8217;s tech in general, right. We&#8217;re always used to that. I have a daughter who is growing up and she kind of grew up in the WordPress community more or less for the last 10 years, you know, with the word camp exposure and everything. And you know, today we kind of take some of the efforts to make people feel welcome for granted a little bit. </p>\n\n\n\n<p>Um, there&#8217;s still obviously a lot that needs to be done in the community, but back in the early days it was, um, You know, especially if someone, someone relates to an someone who relates to a subject or a con or a conference, they love seeing people that represent them on stage or representing them organizing an event. </p>\n\n\n\n<p>Right. And maybe it&#8217;s not apples to apples. Exactly. But you know, it&#8217;s, it&#8217;s, it&#8217;s like, especially, um, especially if, just think if you&#8217;re a young woman, I can&#8217;t, but I have a daughter, so, you know, I&#8217;ve seen her reactions and, um, it&#8217;s, she, she can connect so well with when people, when women were speaking at meetups. <br />So just imagine like back then we just, you know, their focus wasn&#8217;t there cuz we were just happy to have meetups in ward camps, period. And then once we started getting people to speak, then we kind of, like some people especially, started to notice a pattern and that had to be brought to a lot of people&#8217;s attention. </p>\n\n\n\n<p>So that kind of, we kind of evolved into a way where, yes, okay, now we&#8217;ve got the ba, we&#8217;ve got some basics down, but now we&#8217;ve got a lot of improving to do because if we want this community to grow and be decent human beings, we should try to make things as as. And you know what that does for me as an organizer, I was focused on speaker stuff, but there were so many people at the work camps like you, Mihir, we&#8217;re doing these, um, side, I don&#8217;t want to use the wrong term because they&#8217;re important, but um, Site events, right? </p>\n\n\n\n<p>Or something like that. But I mean that respectfully in terms of like, yeah, let&#8217;s, let&#8217;s take a, let&#8217;s get this certain group together and take a photo or let&#8217;s, or, or have this, um, mini meetup or like an after dinner thing at WordPress meetups and that sort of thing. Or even now online, you know, there&#8217;s various, um, communities out there that exist for particular kinds of groups. </p>\n\n\n\n<p>Um, black Press and so forth that, um, that I, at least I&#8217;m familiar with. So I think that was a fantastic idea. I don&#8217;t know if anybody else is familiar with anything else or wants to jump in, but I think putting down a moment in terms of, now I don&#8217;t know how to word this exactly, so maybe you can gimme a term. <br />I can put in the show notes. I have women&#8217;s selfies written down here just because that&#8217;s how my brain works and I don&#8217;t wanna be canceled later. WordPress, sorry. If you can gimme another term. That&#8217;s what I got. What&#8217;s that? Women in WordPress. You got it. I will quote you on that. <br />Tammie Lister: Have you seen that? It&#8217;s possible to not just see one of you though, as well, which is what you are identifying. </p>\n\n\n\n<p>You are, you are saying that there&#8217;s more than one of you and there&#8217;s more than one possibility of you as well, which is really, really important. Um, seeing all the different possibilities that you could do in all the different areas, I think that&#8217;s important for whoever you are as well. So I love that. I think that&#8217;s amazing. <br />David Bisset: And more of it, and in the WordPress leadership roles too. So many are women. My family, women are the hardest working ones. Anyway. Okay, we got that on tape. All right, good. All right. Just, just made just a little insurance from, from my wife later. Um, alright Robert, let&#8217;s talk, let&#8217;s talk a favorite community moment. Or cause Okay. Something along those lines. </p>\n\n\n\n<p>Robert Windisch: So my, my job, uh, my day job is to challenge processes. Now, let&#8217;s see if I, if I come, if, if I have a runner up. So I just want to see if it&#8217;s like how close I am to the things that are not allowed. Okay. Uh, my, uh, favorite or my, like most re uh, community moment is when the, when the whole room at the, at the state of world guest. </p>\n\n\n\n<p>Um, the point was when met stopped the release cycle, so when, when the, uh, before like, uh, before the, um, um, five oh release, um, like we had this like every three months we had to release and then, um, this was like, it not going to, it was not gonna cutting it because the, the changes we needed to do, um, were really, were too big. </p>\n\n\n\n<p>So we cannot, we, like I heard from so many core people that was not, um, um, Like was, was not gonna like cut it in a few months back to just get it in. So my question is, does counting of a re uh, like starting a release cycle counts. So because, um, that was like, I, we were in the room and was like, yeah, and now that&#8217;s why we, uh, need to explain. </p>\n\n\n\n<p>Matt explained that and that&#8217;s why we stopped the release cycle now and everyone was like, what the hell just happened for me? That was like, he dropped the mic amenable </p>\n\n\n\n<p>David Bisset: moment. I think he dropped the mic too. I can&#8217;t remember. Uh, when was that? </p>\n\n\n\n<p>Robert Windisch: Um, 2017, like, uh, weekend as Tammie, because she was uh, um, uh, design, I think Design team rep after that. Yeah. And like Matt was simply, </p>\n\n\n\n<p>Tammie Lister: it would&#8217;ve, I think it would&#8217;ve been, well it would&#8217;ve been 4.9, but we didn&#8217;t do that. Uh, and so yeah, it was four, 5.0. Then we. Had a pause, ended it. So yeah, I think it was 17. I dunno the year exactly. 17. There&#8217;s many years. 17, 18 blended into each other during that time. </p>\n\n\n\n<p>David Bisset: But there was a 4.9. There was a 4.9, wasn&#8217;t there? </p>\n\n\n\n<p>Simon Kraft: It were many 4.9 s. </p>\n\n\n\n<p>Tammie Lister: It would&#8217;ve been like 5.0. It was after 4.9. It would&#8217;ve been. So, </p>\n\n\n\n<p>David Bisset: so it&#8217;s kinda like 3.0, sorry. It&#8217;s kinda like walking toward a, walking halfway toward a wall and then walking halfway toward a wall. There&#8217;s 4.9, there&#8217;s 4.99, 4.9 9, 9, 4 0.99, nine, oh, not 5.0 yet very </p>\n\n\n\n<p>Tammie Lister: long. 4.9 release, </p>\n\n\n\n<p>Robert Windisch: Yeah. But the, the, the beauty was really that, that there was no release. So there was like, we will have a release when we have a release and like there wasn&#8217;t release in between where we like fixed small stuff because we still needed to do while like Tammie and other people were like, okay. </p>\n\n\n\n<p>How, what are we doing? How do we, like, what is the goal here? And, and that&#8217;s why it was really for me, like it sh it, it really, uh, in this, in this moment, in this room at the Word camp us, you really could, like, you could feel a needle drop in the room because like, it was something that never happened before, because like you could, uh, um, um, you can set your watch to Roberto releases. </p>\n\n\n\n<p>Mm-hmm. And then we simply stopped doing that while deciding that we, like, stop doing it because it doesn&#8217;t make any sense. So it was really, really weird and really good because it, it helped us to make this leap that we not talking about right now, but it, it helped us to really, uh, prepare for that. </p>\n\n\n\n<p>Tammie Lister: It was also a stop and help was also kind of part of it. <br />It was a stop and this is how you can get involved. I think that was kind of the other bit like once everyone kind of gets over that Uber stopped, it was, and then here&#8217;s how you can get involved. So it kind of had that double um, or this, that was my, my through the haze of time impact, um, was it brings about the, okay, now I can get involved cuz people do like a release circle. </p>\n\n\n\n<p>Right. Um, so consistency. Now I get involved and now I can do that. And it, it did get us to 5.0, it absolutely got us to it. And without that we would not have had the 5.0. You know, there&#8217;s no point in releasing something there. We are radically different from what we were, but there&#8217;s no point in releasing something that would&#8217;ve been half-baked. It wouldn&#8217;t have worked. </p>\n\n\n\n<p>David Bisset: Yeah. So we have actually done that once in our, at least once in our WordPress history. Right. Yeah, I, I, I don&#8217;t know if we&#8217;ll see a moment like that again, at least anytime soon. It seems like Gutenberg phases seem to be planned out, or at least not like that drama ish type of thing. </p>\n\n\n\n<p>Right. It&#8217;s not, it wasn&#8217;t a press release Rob Robert&#8217;s. Right. I remember. I remember saying Matt, Matt said it, and I think a few people had to change their pants. It was that kind of a moment where you just kind of expected like, this is all, this is all we&#8217;ve known, you know? And that&#8217;s funny because, you know, fast forward to a few days before working at us and, and, uh, you know, me in a hotel room, super caffeinated trying to finish something as Matt is in a chat room saying 5.0, it&#8217;s coming out now, whether we like it or not, it&#8217;s coming out, you know. </p>\n\n\n\n<p>Anyway. I better stop with the analogies. It was ready. Oh, it was, it was, it was ready. Kind of kinda like I&#8217;m on top of this, uh, on a heel skiing and somebody says, oh, you&#8217;re ready, you&#8217;re ready. And slowly pushing me off the ledge. It&#8217;s, it was that type of ready. Oh yeah, it was ready. It was ready. Um, I just did, you know, just, just thinking my life flashing before my eyes right before it came out though. Um, let&#8217;s see, Tammie, I think your next, um, community initiative, cause whatever, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m going to take you back to 2014 to, I don&#8217;t wanna go Miami and the first ever kids workshop. </p>\n\n\n\n<p>David Bisset: Ah, you actually snagged something. </p>\n\n\n\n<p>Tammie Lister: Oh. Cause that fell. I still have. Really fond memories of it. It kind of felt really incredible to, it wasn&#8217;t even really that organized. It wasn&#8217;t really that. </p>\n\n\n\n<p>David Bisset: Thanks Tammie, really appreciate it. It was that big in, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m sorry, but there&#8217;s no, like back then we were David all over initiative. I&#8217;m sorry. We weren&#8217;t, we weren&#8217;t trying to do we, we were just gonna be doing the event. We weren&#8217;t gonna necessarily try and do anything bigger with it. </p>\n\n\n\n<p>And I think it planted a good seed that maybe took a bit of time before anything else happened, but that was absolutely fine. Um, and it was really important for just to start that. I think it&#8217;s both important for representation, but also important for an open source project doesn&#8217;t work with older people only working on it. </p>\n\n\n\n<p>So for me it was incredibly special if I think of the people that were in that room as well, who were passing on. Many of them are still involved, contributing, in fact, all of them that I can think of. And it was just really special for me. Yeah. Yeah. </p>\n\n\n\n<p>David Bisset: Um, that, now, just to be clear, for someone who was about to write that email to us, this is not the first kid&#8217;s camp ever in a work camp. <br />It was the one Tammie attended? No, it was a kid&#8217;s workshop. Workshop. It was a, well, I don&#8217;t like to use the word kids and work very close to each other because people get sensitive about that. </p>\n\n\n\n<p>Tammie Lister: Yeah. It was 2014. It was no like kids camp or anything like that. It was, it was just, I, I don&#8217;t think it was that long, either, we weren&#8217;t doing it for or anything like that. </p>\n\n\n\n<p>David Bisset: Kids don&#8217;t exactly have long attention spans. So, yeah, that&#8217;s under we, </p>\n\n\n\n<p>Tammie Lister: no, it was, it was nothing official. It was no official kids camp. It was nothing. And it, it was, it was long time ago, so there was no kind of officialness of it. Um, but no, it was, I think we got them set up on a blog and we got them to customizing a theme and writing their first post. <br />That was as far as we got. That was our goal for the day. </p>\n\n\n\n<p>David Bisset: Some people vowed never have children after that. Our younger, uh, younger volunteers look, well, I mean, I, I, it was there at Miami because I was at Phoenix and saw something very similar. I think it was a one day event at Phoenix. I saw there, I was there watching the kids. </p>\n\n\n\n<p>Which nowaday, it sounds creepy when you say, are you here? Do you have any kids? No, I&#8217;m just watching them seeing how they do things. All right. Sarah, security and, uh, but I was watching how they did it in Phoenix, and this was, I don&#8217;t know, maybe it&#8217;s 2 20 12 or 2013 or something like that. And then, yeah, that&#8217;s when we started doing in Miami and now it, now there&#8217;s lots of kids&#8217; camps. </p>\n\n\n\n<p>There&#8217;s a whole kids&#8217;. Section now of learning and, and people in charge of that type of thing now. And there&#8217;s probably gonna be something at, uh, us, I know there&#8217;s something at Europe coming up, uh, which is fantastic. So it&#8217;s exploded. And then when we did our 10th anniversary word pr, our 10th anniversary were Camp Miami. </p>\n\n\n\n<p>It is prog, it progressed to a point where we had the kids, I forget what the ages were, I&#8217;ll be gonna say like seven to 11 or seven to 12, seven to 13. That age group doing what you said, more or less. But then we kind of took the pe, the teenagers, 14 to like high school level. And then we had a day where we taught them WordPress. </p>\n\n\n\n<p>And then a day after, like we taught them WordPress and how to build a store in WooCommerce. Then the next day we taught them s e how to market it. </p>\n\n\n\n<p>Tammie Lister: Wow. I think it was also back then we were being very experimental with what could a word count be? Remember the day of rest and all the different kind of buddy camps and different things. </p>\n\n\n\n<p>Oh, yes. I think we were just kind of experimenting with different formats as well. Yeah, exactly. We were just, uh, I think that was part of it as well as like, how can we start? And it&#8217;s great to kind of think about that as well. So I think that was kind of amazing. </p>\n\n\n\n<p>David Bisset: Fantastic. Memories. Still one of my mentions. So Simon, um, let&#8217;s, let&#8217;s cover, let&#8217;s cover the, um, anything from a community moment standpoint that stood out for you. </p>\n\n\n\n<p>Simon Kraft: Yeah, I&#8217;ll, I&#8217;ll stay in the, um, event space, I guess. </p>\n\n\n\n<p>David Bisset: Oh, he&#8217;s, he&#8217;s choked up. This is a, this is gonna be so good. </p>\n\n\n\n<p>Simon Kraft: Um, and I just noticed that we&#8217;ll stay in the 2013 ish, uh, kind of timeframe. <br />David Bisset: It&#8217;s the WordPress 3.0 3.0 of years, right? Yeah. </p>\n\n\n\n<p>Simon Kraft: Um, because in, I think it was early October, 2013, uh, we had the first word Kim Europe in, in Liden and it was such a stupid idea, um, back then and still. </p>\n\n\n\n<p>David Bisset: Wait, let me, let me write that down, Simon. Yeah. Stupid. Okay, go ahead Simon. Just wanna make sure I got this cuz </p>\n\n\n\n<p>Simon Kraft: it&#8217;s just the, the kind of stupid idea that hold on and exploded into the kind of mega event that what computer is today. And it was totally different back then, but the idea to bring like a whole continent together and have a joint event, um, It was beautiful and also it was a nice event. <br />Um, I have to say that, um, </p>\n\n\n\n<p>David Bisset: possibly the first regional event, although I don&#8217;t know if Word Camp Asia or it&#8217;s forced in existence. What&#8217;s that? </p>\n\n\n\n<p>Simon Kraft: Yeah, yeah. Oh, it really was. And uh, there was no word can be asked before that, at least. No, no official one. </p>\n\n\n\n<p>Robert Windisch: There was none. There was just the, just San Francisco, the global one as, as we European call that. Yeah. And I think it&#8217;s, </p>\n\n\n\n<p>Simon Kraft: it&#8217;s some, sorry. </p>\n\n\n\n<p>Tammie Lister: No, you go. As it was the first, and it was done in an incredibly short time. Uh mm-hmm. I don&#8217;t think anyone ever realizes how short a time it was done in the end as well. </p>\n\n\n\n<p>David Bisset: Somebody only had a few people, only had one change of clothes was that quick. </p>\n\n\n\n<p>Tammie Lister: But yeah. And, uh, so as, as someone that was involved in it, I, um, it was one of those things that I, I think you, I. <br />Rarely get to experience, but the venue was incredible. Mm-hmm. I plus one that mm-hmm. That was one of those venues. Um, we, several of us had gone to a conference before in that venue and got to see that venue and it&#8217;s was one of those venues that I would love to use again for something. It&#8217;s just a great venue. </p>\n\n\n\n<p>David Bisset: It really also symbol started to formulate the idea that we could have larger word camps and the community had matured to that point where we could bring in a larger event and we could coordinate across multiple countries for that sort of thing. Um, before that, um, you all you had was cities or I think in a few places or, you know, general regions like Word Camp Southeast or Midwest or something, some direction in the us. </p>\n\n\n\n<p>Um, but that was a very memorable moment in terms of community history. Cuz again, I don&#8217;t know, I, I think, I don&#8217;t know when Japan. I know Word Camp Japans have been very, very long standing, but, but for Europe it was, it was got a lot of attention and I think rightly so. So I&#8217;m, I&#8217;m really good for that cuz it kind of set the, it set the pattern for all for, for camp us a bit. </p>\n\n\n\n<p>It set a precedent for, um, the scene. There&#8217;s War Camp Asia and there&#8217;s probably, I feel like I&#8217;m leaving somebody out. I think there&#8217;s one on the books and I just can&#8217;t remember what region is now gonna be. I know they want to have a war camp, Africa War Camp </p>\n\n\n\n<p>Robert Windisch: Nordic. You had a WordCamp Nordic regions in, in, in Europe. <br />Mm-hmm. </p>\n\n\n\n<p>David Bisset: Yeah. And you know, who knows in 30 years War Camp Mars. So anyway, that, I think that&#8217;s a pretty, pretty, pretty good thing to put a pin on in terms of the community there. Now I, uh, I could, as, as much as I like my, uh, work camp Miami, there really was nothing. Uh, there&#8217;s, there&#8217;s nothing that equals that level. </p>\n\n\n\n<p>So I&#8217;m gonna leave that out because I&#8217;m biased anyway, I do wanna put together. You mentioned two things, um, from a community, uh, cause or initiative standpoint. One was reco, and I may have mentioned this in the past episode, so listener, I apologize if I&#8217;m repeating myself, but it&#8217;s also when we talk about the community, recognizing those that we no longer have in our community. </p>\n\n\n\n<p>Um, so I thought, uh, one thing that stood out to me, that representative was the Kim Marshall&#8217;s Memorial scholarship. Um, and you know, and because a lot of the old, old timers remember her, um, I remember her at Work Camp San Francisco. Um, But also like all those other people that, you know, our community, the older community gets, people get old. </p>\n\n\n\n<p>Um, that&#8217;s, that&#8217;s life, uh, currently. So people will leave the community, uh, in that manner. Not, you know, not, not, not drama wise. I&#8217;m never coming back community, but people pass away or people have, uh, accidents and that sort of thing. So it is that, that kind of represents to me, not just the scholarship itself, which is a great initiative on its own, but it&#8217;s a recognition of, you know, we have important people that we want to remember the WordPress community, whether it&#8217;s in the form of scholarship or honoring them on social media every year, seeing their names and releases. </p>\n\n\n\n<p>I know there&#8217;s a couple of people, and I am really, really bad at remembering his name right now, but he created a plugin. He was race, he was into a race car driving. I remember him in a race car. What&#8217;s that? Wipo? Yeah, VI, right. But what was his name though? Yeah. What was the name I, I&#8217;m gonna kill my why was 0 0 7? </p>\n\n\n\n<p>Yes. The user name. Yeah, but I&#8217;m talking about his real name and I&#8217;m frustrated with myself. I can&#8217;t remember it, but I remember when he passed away, I forget what plug-in he did. I guess I&#8217;ll have, I&#8217;ll include that in </p>\n\n\n\n<p>Simon Kraft: Shownotes, but he did the regenerate thumbnails plugin and his Alex, </p>\n\n\n\n<p>David Bisset: yeah. Oh, okay. So we, we remember &#8217;em by reputation, but it&#8217;s all of those people that do these plugins and Alex Mills. There you go. I&#8217;m horrible at remembering names, but yes, </p>\n\n\n\n<p>Robert Windisch: I&#8217;m googling ju just like, </p>\n\n\n\n<p>David Bisset: oh, I don&#8217;t judge. Just keep your hands here. So we have Kim Parcels, we have Alex Mills, all of these people that, that are involved, that with the community that, that we, that we&#8217;ve taken their plug-in, we&#8217;ve taken their plug-ins and their work and they&#8217;re, you know, and it&#8217;s in WordPress core now to our popular plug-in now. </p>\n\n\n\n<p>And the other, the other thing I wanted to point out as a community initiative or, or moments was the Wampoo itself has, and, and I see one behind, um, Tammie, hopefully she knows it&#8217;s there. And we have so many, it&#8217;s incorporated, like every word camp now has a wpu. Um, it was also a lot of the kids&#8217; stuff had wpu involved as a cartoon character and, you know, that was part of the kids&#8217; camp stuff. </p>\n\n\n\n<p>And, um, I&#8217;m sharing a link with you all right now. One of the, one of the coolest swag moments I ever had was, um, for, I don&#8217;t know which, where Camp Miami was, but we came out with these UNO cards, with wpu s on them, and. I put it on his open source on GitHub and be, this is the community angle, like a couple of work camps from like the other side of the world. </p>\n\n\n\n<p>I think from, I think from India or Indonesia, I believe it was somewhere in that general area. They pinged us and said, can we use these? I said, yes, they&#8217;re open source. So what they did was they just changed the design a little bit. Like they, they put the work camp logo on it and made it, maybe translated it a little bit in their language, but now people are saying, oh, those are cool cards. </p>\n\n\n\n<p>And like, you know, I have a little bit of pride. I said, yes, those, I, those are cool when we thought of them over in Work Camp Miami. But I am, so I&#8217;m even more happy to see people repurposing swag like that. And I thought the Wampoo, um, was an original great idea and I&#8217;m glad that, um, um, Matt kind of adopted that as part of the unofficial slash. Unofficial. I&#8217;ll say unofficial mascot cuz I&#8217;m not seeing it on official. </p>\n\n\n\n<p>Robert Windisch: Unofficial. Official. It&#8217;s the official term for the, it&#8217;s unofficial official. </p>\n\n\n\n<p>David Bisset: Just think of all the pins, all the badges, all the shirts. I don&#8217;t know if you ever saw the Work Camp Wpu shirt from Work Camp Miami that had the face, </p>\n\n\n\n<p>Tammie Lister: there was an actual physical wapuu. </p>\n\n\n\n<p>David Bisset: Yes. The one walking around there. <br />wapuu became physical. I was wandering around. It was the best work camp Miami 2019. I know the people that were in that suit. It was like a walking Cheeto, but it was so worth to see a walking wapuu around. </p>\n\n\n\n<p>But yeah, it&#8217;s just, think of all the swag and like the MAs, the just the very thought of a mascot, um, itself. Not a logo, but a mascot I thought really helped shape the WordPress community was a great community moment. So anyway, thumbs up to all those people. I have one to, what&#8217;s that? </p>\n\n\n\n<p>Tammie Lister: Yeah, I have one to add. I think the sustainability initiative, which is a newer one. I think that&#8217;s just getting started. But I think. And gathering momentum and finding out what it means. But as someone that&#8217;s organized a word camp before and tried to do it, sustainability when we in Brighton, um, I think it&#8217;s really good from that app. But I also think it&#8217;s really good from just the impact as a project that we leave and like the technology, I think it talking about like trying to be around as a project for a while, we kind of have to be aware of all those aspects. </p>\n\n\n\n<p>So I think that initiative deserves a kind of mm-hmm. Call out because it crosses so many of our areas and it doesn&#8217;t necessarily get and so much kind of eyeballs I think. </p>\n\n\n\n<p>David Bisset: Yeah. Make sure to throw that in the show notes by the way, cuz. We&#8217;ve shared so much here today. And, and, uh, no, I&#8217;ll include everything that you&#8217;ve mentioned. Everything you thought of, throw it in the show notes. I&#8217;ll do a array matching thing so we don&#8217;t get duplicates. Um, all right, so I, we&#8217;ve covered kind of the categories and we&#8217;ve covered a lot of stuff and I&#8217;m really happy cuz a lot of stuff we&#8217;ve talked about here today is, is not been mentioned in depth in my other conversations. </p>\n\n\n\n<p>So that&#8217;s fantastic. I got exactly what I wanted out of you all. But, so what I wanted to do is I wanted to go around one last time and see if there&#8217;s any random thoughts that appeared in your head about anything else. Sky&#8217;s the limit. In terms of, in terms of any moments. Um, you know, I was gonna say good, bad and ugly, but let&#8217;s just, we&#8217;ll, let&#8217;s just keep it or good or bad because I don&#8217;t have time to cover ugly. </p>\n\n\n\n<p>Um, Mihir, um, what have we left out here? What did we not mention that you think could, could be mentioned real briefly? </p>\n\n\n\n<p>Meher Bala: Uh, recently Michelle has created a side WP speakers. </p>\n\n\n\n<p>David Bisset: Ah, yeah. </p>\n\n\n\n<p>Meher Bala: So this. I see this helping the organizers with finding out, uh, speakers in their areas or n nearby do not go and approach them. So that is one thing which just came across my mind right </p>\n\n\n\n<p>David Bisset: now. Yeah. Kudos to her for that initiative. She does so much now, the job things on Wednesdays and all her, all her community work, which we don&#8217;t have time to go into here. That&#8217;s fantastic. Yes. So speakers of speakers project. My, um, Robert, anything we might have, we haven&#8217;t touched on at all briefly? </p>\n\n\n\n<p>Robert Windisch: Yeah. Um, so small thing, um, the time when W P C L I became a make project, Because it was a project outside. And, uh, it&#8217;s really like if, if people like, cause the people who work, um, professional with WordPress sites and like on local, on local, um, machines and like automating stuff like the W P C L, I be becoming like a, a real make project with all the um, good and bad things around it. It was really, really good for the project and for Daba P c I to jump the simply make sure it stays around </p>\n\n\n\n<p>David Bisset: wp I, yeah, develop. If, if you&#8217;re a developer and you&#8217;re not familiar with that, slap your face twice and get reading in the documentation. Tammie, what have we not mentioned here at all? </p>\n\n\n\n<p>Tammie Lister: This is almost like project management, but I&#8217;m gonna say in core, when started to have more organization core meetings and recognizing roles for releases, I think that that started to allow people to see where they could be part of it. </p>\n\n\n\n<p>Um, and. Gave enough order to those meetings that someone could follow along, you know, you can follow the agenda. Um, so those kind of things. Having enough project management, uh, so that someone could belong. So just being able to have a call. We didn&#8217;t do that. We didn&#8217;t have calls for releases and Oh, yeah. </p>\n\n\n\n<p>And people being part of it and, and having like, Hey, would you like to have these roles? And people been able to step up and have those roles, that&#8217;s really important. And it&#8217;s not that far, but we&#8217;ve had that. So I think that is really, really important for us. Yeah. </p>\n\n\n\n<p>David Bisset: You take that stuff for granted sometimes, not realizing how you do, it&#8217;s never been, and </p>\n\n\n\n<p>Tammie Lister: it&#8217;s not just like tech, it&#8217;s like documentation and it&#8217;s growing. <br />Right. The options that people can step up and be part of. So yeah, I think that, </p>\n\n\n\n<p>David Bisset: and that&#8217;s what some people that have come into the WordPress community in the last couple of years, they haven&#8217;t known a time before that. It&#8217;s kind of like </p>\n\n\n\n<p>Tammie Lister: no. And Core Chats used to be a lot, there used to be a lot to be part of and try and follow and keep up with. Um, and it would put off a lot of people. So this is an incredibly welcoming, so yeah, more inclusive. </p>\n\n\n\n<p>David Bisset: It&#8217;s trying to explain what a V H S tape is to my daughter today. Yes. That was, there were times before digital media. So Simon, what? And one or two things briefly. We may not have covered that. Yeah. Could see. <br />I can see your gears turning. Sorry. </p>\n\n\n\n<p>Simon Kraft: No, no. I have something, uh, </p>\n\n\n\n<p>David Bisset: stuck in your teeth . Oh, um, oh, I&#8217;m sorry. I thought I could read, I thought I could read people. God, what else? You got anything in the tank? </p>\n\n\n\n<p>Simon Kraft: I would like to give a shine a light on a make team that I think has its work a bit undervalued sometimes. Um, the accessibility team. Uh, you do like a really great job speaking of inclusivity, um, in making sure that more people can use WordPress, and I think that&#8217;s part of democratized publishing. So they do very, very important work. </p>\n\n\n\n<p>David Bisset: Yeah, I can&#8217;t argue with that. I, I am always amazed at the new, it&#8217;s especially so much harder now with all the more complex technologies, especially in the admin, right? </p>\n\n\n\n<p>And that&#8217;s still a work in progress. I think all the initiatives that we&#8217;re doing today, you know, ev moving forward, I, I want, I wanna, I wanna see more attention to them, um, because a lot of accessibility needs that kind of attention and just like performance or anything else. And so many times accessibility is, is not a first brain thought type of a thing. </p>\n\n\n\n<p>So I really think that deserves a real good shout out as far as I&#8217;m concerned. I&#8217;ve got three random things left. I, we&#8217;ve talked about acquisitions in the previous. Shows, but I always thought the Tumblr acquisition really stood out to me in terms of a potential that it has for WordPress moving forward that isn&#8217;t WordPress. </p>\n\n\n\n<p>Um, Gutenberg is supposed to transcend WordPress. Maybe, maybe that&#8217;s, uh, Matt&#8217;s made that comment a couple of times, so it&#8217;s interesting to see where that might go. Um, P two. Speaking of things that, like some, somebody just said, does he need to do at the restroom? No. The letter p and two. Is a, if you don&#8217;t know what that is, Google it. </p>\n\n\n\n<p>But because, but when, when, when Tammie said something about the structure of, of, of backend WordPress organization, um, it is a blog that Matt and Matt actually talked about this a number of times, and I think they have a new version called oh two. Um, I&#8217;m not sure if that&#8217;s out yet in terms of a, like a plugin or a theme you can download. I think, I, I can&#8217;t remember. All I remember is it was, Cutting more cutting edge in them. But we used to, </p>\n\n\n\n<p>Robert Windisch: it&#8217;s a hosted version on wordpress.com. Yes. The </p>\n\n\n\n<p>David Bisset: hosted version version. It&#8217;s like halfway. It was halfway. They&#8217;re like, you can&#8217;t get it, but you can. You can get it because it&#8217;s hosted this place. So if you don&#8217;t know what those are, just go ahead and Google &#8217;em. </p>\n\n\n\n<p>But P two was fundamental to the organization of a lot of WordPress stuff, even it as it exists today. So like as early as last year, I remember like Word camps, having a P two doc with people organizing writing notes in there. And Matt was always a big, big fan of P two in terms of like, you know, because it&#8217;s basically more or less a block for teams, right? </p>\n\n\n\n<p>A big, big, big use at automatic. And I&#8217;m pretty sure it still does. And finally, I have elevator advertising at work camps, and we&#8217;ll just leave it at that. So thank you very much for everybody. Um, Mission here wasn&#8217;t to cover everything. That&#8217;s impossible. But I wanted to cover things from your brains, cuz all you I respect and are unique and I you brought the game today. </p>\n\n\n\n<p>Thank you very much. I greatly appreciate it. So, um, let&#8217;s go around and then do your, do your, let&#8217;s, let&#8217;s say we&#8217;re people, I was gonna say do your closing remarks, but this isn&#8217;t a talk. Um, where can people find you, uh, on social if they want to cont if they wanna follow you, because these days we, we, it&#8217;s, who knows? It&#8217;s social blog, whatever you want to, whatever you wanna share. But here you go first. </p>\n\n\n\n<p>Meher Bala: Uh, I&#8217;m on Twitter, me, I&#8217;m on LinkedIn and my website meher.com. </p>\n\n\n\n<p>David Bisset: Yes. And we&#8217;ll also put these in the show notes too, so I don&#8217;t have to worry about spelling everything out cuz I can&#8217;t spell. It was very nice to have you, um, Robert, um, the, yeah, if, if, uh, yeah, go ahead. <br />I was gonna say, where can we buy that hat? But I don&#8217;t think that exists anymore. </p>\n\n\n\n<p>Robert Windisch: That&#8217;s very like with pins or without. Um, so it&#8217;s, uh, it&#8217;s nubis on, on Twitter and otherwise it&#8217;s nubi it on the WordPress profile. </p>\n\n\n\n<p>David Bisset: Thank you very much, Robert. It&#8217;s good to see you in the hat again. And, um, if you ever wanna sneak into a Word camp, just don&#8217;t wear the hat and people won&#8217;t recognize you. Um, Tammie, uh, where can we find you? <br />Tammie Lister: You can find me at karmatosed on all the things. </p>\n\n\n\n<p>David Bisset: Yes. Pretty much still and don&#8217;t What about, yeah, well, we&#8217;ll just put show notes. Just that. And well, people will find you again. You also have a, um, you also have you started a new blog recently too, or am I, I have now next slab. </p>\n\n\n\n<p>Include that in show notes as well, because we&#8217;ve been, I&#8217;ve been reading, I&#8217;m, I, I, I&#8217;ll, I, I be ashamed to admit, I don&#8217;t know when you started it, but I&#8217;ve been picking up the last couple of posts, so they&#8217;ve been very insightful. It&#8217;s only been a couple of weeks. Thank I&#8217;m so God. I put myself out there and it will work. <br />I&#8217;m sorry, go ahead. Yeah, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m just starting to write just generally about where could WebPress go in the now and the next. Oh yeah. </p>\n\n\n\n<p>David Bisset: Okay. I&#8217;ll throw that into show notes as well. Just some thoughts. Yeah. Well, you&#8217;ve always had some good thoughts. I think it&#8217;s worth sharing. Simon, where can people be finding you? </p>\n\n\n\n<p>Simon Kraft: I think the easiest is https://simon.blog/ . Yeah. Yeah. I was an early adopter. </p>\n\n\n\n<p>David Bisset: Um, you don&#8217;t have to rub it in, but Okay. </p>\n\n\n\n<p>Simon Kraft: And I think I&#8217;ll link to basically all the other things from there. So I won&#8217;t try and, uh, spell out my masteron username and domain thingy. </p>\n\n\n\n<p>David Bisset: Sorry. Please don&#8217;t, because it sets off my Amazon Echo for some reason when you start saying master on things. Nope, we&#8217;re good. All right. We&#8217;re fine. Uh, yes. Yeah, Simon Dolo. Wow. And you&#8217;ve got an English translation too. Oh, that&#8217;s great. Last crappy Twitter in beds, please. Ooh, I&#8217;d like to read that one. All right. So Simon Dolo for you. So, um, just if you&#8217;re hearing this and you wanna follow me, um, best place to go would be either david bis.com or David bi.social. </p>\n\n\n\n<p>But thank you all for coming. Your time is precious. Greatly appreciate it. And, uh, we will talk later. Thank you. </p>\n\n\n\n<p>Simon Kraft: Thank you. All right.</p>\n</div>\n\n\n\n<p>Today is a little bit of a departure for the podcast. It&#8217;s an episode all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister, with David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover a lot of ground, and it&#8217;s fascinating to hear their WordPress stories from the past two decades.</p>\n\n\n\n<p><strong>Notes from David Bisset:</strong></p>\n\n\n\n<p>To honor WordPress’s 20th anniversary I locked myself in a room with four wonderful community members to talk about some highlights in it’s history.</p>\n\n\n\n<p>Primary topics include:</p>\n\n\n\n<ul>\n<li>a memorable design or refresh in WordPress&#8217; history</li>\n\n\n\n<li>the most notable enhancement to WordPress core (that wasn’t Gutenberg related)</li>\n\n\n\n<li>a memorable community moment or cause</li>\n</ul>\n\n\n\n<p>There&#8217;s also lots of &#8216;forgotten&#8217; history and features also come up in the discussion. So, regardless of how long you’ve been involved with WordPress, you’ll learn and maybe have your memories jogged!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Discussion subjects and links:</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Robert Windisch</h4>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/\">https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/wordpress-events-in-the-dashboard/\">https://make.wordpress.org/community/handbook/meetup-organizer/wordpress-events-in-the-dashboard/</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/post-formats/\">https://wordpress.org/documentation/article/post-formats/</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 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: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:92:\"Do The Woo Community: A Blend of WordCamp Europe, WordPress and WooCommerce with Sjoerd Blom\";s:7:\"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=75203\";s:7:\"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:90:\"https://dothewoo.io/a-blend-of-wordcamp-europe-wordpress-and-woocommerce-with-sjoerd-blom/\";s: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:465:\"<p>Sjoerd, the global lead from WordCamp Europe joins us to talk more about the event and his life with WooCommerce and WordPress. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-blend-of-wordcamp-europe-wordpress-and-woocommerce-with-sjoerd-blom/\">A Blend of WordCamp Europe, WordPress and WooCommerce with Sjoerd Blom</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, 25 May 2023 10:49: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:\"\";}}}}}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:69:\"WPTavern: MariaDB Health Checks Plugin Now Available on 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145418\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/mariadb-health-checks-plugin-now-available-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2130:\"<img />\n\n\n\n<p>A new <a href=\"https://wordpress.org/plugins/mariadb-health-checks/\">MariaDB Health Checks</a> plugin is now available on WordPress.org, thanks to the efforts of contributors involved in the 2023 CloudFest Hackathon which took place in Germany. MariaDB is a popular open source database used by those looking to further scale their websites, as it is generally faster than MySQL with better support for a concurrent number of connections. </p>\n\n\n\n<p>&#8220;At the moment it appears WordPress is dominating the PHP world, so this seemed to be the perfect target,&#8221; MariaDB Foundation Chief Contributions Officer Andrew Hutchings <a href=\"https://mariadb.org/mariadb-foundation-at-cloudfest-hackathon/\">said</a> about creating the plugin at the hackathon.</p>\n\n\n\n<p> &#8220;The MariaDB Foundation loves WordPress (I’m writing this post in WordPress right now) so it seemed like a logical project.&#8221;</p>\n\n\n\n<p>The plugin helps users debug their MariaDB databases by displaying important information, such as logs, locale, connections, character set and collation, and options. It also shows a graph of the number of queries and the execution time over the last 24 hours.</p>\n\n\n\n<img />\n\n\n\n<p>The plugin also integrates with WordPress&#8217; Site Health feature with two checks:  an end-of-life check and a check for whether Histograms have been run. Histograms are an optimizer that can help improve MariaDB performance, and the plugin enables calculation of histograms to run on WordPress tables with the click of a button under the plugin&#8217;s Tools menu.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;There are a few features now and it is a good framework to add more features to in future,&#8221; Hutchings said. &#8220;This is a community project and is open to suggestions and pull requests. This is a project that we at the MariaDB Foundation want to support in the future.&#8221;</p>\n\n\n\n<p>MariaDB Health Checks is <a href=\"https://github.com/MariaDB/wordpress-mariadb-health-checks\">developed on GitHub</a> where developers can follow the plugin&#8217;s progress, contribute to new features, and report bugs.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 May 2023 21:14:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:122:\"Post Status: WP 6.2.2 • WP Playground • Client-side Filtering • Future WordCamp Brainstorms • Plugin Review Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149407\";s:7:\"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:117:\"https://poststatus.com/wp-6-2-2-wp-playground-client-side-filtering-future-wordcamp-brainstorms-plugin-review-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21112:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 22, 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\">WordPress 6.2.2 is available now for update. This reintroduces shortcodes in Block Theme Templates in a more secure way. <br /><br />Rich Tabor and WordPress Playground innovator Adam Zielinski discuss the capabilities and promise of WP Playground.<br /><br />What do you want to see for future WordCamps? Share your ideas on the post.<br /><br />Do you want to disable border settings for everyone but Administrators, and only for posts? See the Dev Blog. <br /><br />What&#8217;s the fate of the plugin review team with the primary maintainer soon to retire? It appears to have a bright future with additional contributors and tooling.  </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-fas_filter kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2.2, Next Gen WordCamps, Block Filters for Client Curation, Plugin Review Onboarding</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6a8.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing: Episode 56: What to Know About WordPress Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4a1.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a> <br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9e9.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50c.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2023/05/17/plugin-review-team-update/\">Plugin Review Team Update</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/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing: Episode 56: What to Know About WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Look closely. Did you know this wizardry is currently possible in the Editor?!?<br /><br />Join us on Thursday for the next <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Hallway Hangout where we\'ll discuss curating the Editor and building block themes for clients. RSVP<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f447.png\" alt=\"?\" class=\"wp-smiley\" /><a href=\"https://t.co/DPqrFHVXtT\">https://t.co/DPqrFHVXtT</a> <a href=\"https://t.co/XbZBC97QDu\">pic.twitter.com/XbZBC97QDu</a></p>&mdash; Nick Diego (@nickmdiego) <a href=\"https://twitter.com/nickmdiego/status/1660712789491548160?ref_src=twsrc%5Etfw\">May 22, 2023</a></blockquote>\n</div>\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-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/05/22/accessibility-team-meeting-notes-may-19-2023/\">Accessibility Team Meeting Notes: May 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/05/siteground-joins-the-wordpress-global-community-sponsorship-program-in-2023/\">SiteGround joins the WordPress global community sponsorship program in 2023</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/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/20/wordpress-community-team-discussion-9-the-next-generation-of-wordcamps/\">WordPress Community Team Discussion #9: The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/20/recap-of-the-contributor-working-groups-mentorship-chat-on-may-18-2023/\">Recap of the Contributor Working Group’s Mentorship Chat on May 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/19/siteground-joins-the-2023-global-sponsorship-program/\">SiteGround Joins the 2023 Global Sponsorship Program</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/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\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</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/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/24/a-week-in-core-may-22-2023/\">A Week in Core – May 22, 2023</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/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/05/useentityrecords-an-easier-way-to-fetch-wordpress-data/\">useEntityRecords: an easier way to fetch WordPress data</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/05/23/editor-chat-agenda-24-may-2023/\">Editor Chat Agenda: 24 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/23/dev-chat-agenda-may-24-2023/\">Dev Chat Agenda, May 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/19/wp-feature-notifications-meeting-notes-2023-05-17/\">WP Feature Notifications Meeting Notes: 2023-05-17</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/23/wordcamp-sylhet-2023-contributor-day-recap/\">WordCamp Sylhet 2023: Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/22/design-share-may-8-may-19/\">Design Share: May 8—May 19</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><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/05/22/online-monthly-docs-team-contributor-day-may-23-2023/\">Online monthly Docs Team Contributor Day May 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/05/22/summary-for-docs-team-meeting-may-16-2023/\">Summary for Docs Team meeting, May 16, 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/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/24/day-17-wp20-from-blogs-to-blocks/\">Day 17: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/23/day-16-wp20-from-blogs-to-blocks/\">Day 16: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/22/day-15-wp20-from-blogs-to-blocks/\">Day 15: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/21/day-14-wp20-from-blogs-to-blocks/\">Day 14: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/20/day-13-wp20-from-blogs-to-blocks/\">Day 13: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/19/day-12-wp20-from-blogs-to-blocks/\">Day 12: #WP20 From Blogs to Blocks</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/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/18/mobile-team-update-may-17th/\">Mobile Team Update – May 17th</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/05/18/catalog-postgres-exploration-effort/\">Catalog Postgres Exploration Effort</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/24/community-meeting-recap-2023-05-22/\">Community Meeting Recap (2023-05-22)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/23/openverse-monthly-priorities-meeting-2023-06-07/\">Openverse Monthly Priorities Meeting 2023-06-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/22/last-week-openverse-2023-05-15-2023-05-22/\">A week in Openverse: 2023-05-15 – 2023-05-22</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/05/23/performance-chat-summary-23-may-2023/\">Performance Chat Summary: 23 May 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/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/09/plugin-review-team-update-8-may-2023/\">Plugin Review Team Update: 8 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/15/plugin-review-team-15-may-2023/\">Plugin Review Team: 15 May 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/05/24/polyglots-table-contributor-day-at-wordcamp-sylhet-2023/\">Polyglots Table: Contributor Day at WordCamp Sylhet 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/23/agenda-weekly-polyglots-chat-may-24-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – May 24, 2023 (13:00 UTC)</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/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-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/05/23/test-chat-summary-23-may-2023/\">Test Chat Summary: 23 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/22/xpost-test-team-update-22-may-2023/\">Test Team Update: 22 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/22/test-team-update-22-may-2023/\">Test Team Update: 22 May 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/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/16/themes-team-update-may-16-2023/\">Themes team update May 16, 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/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/24/training-team-meeting-recap-for-may-23rd-2023/\">Training Team Meeting Recap for May 23rd, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/19/training-team-meeting-recap-for-may-16th-2023/\">Training Team Meeting Recap for May 16th, 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/building-a-page-with-only-patterns/\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-a-blog-or-news-page-to-any-wordpress-website/\">How to add a blog or news page to any WordPress website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-wordpress-multisite-networks/\">Introduction to WordPress Multisite Networks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</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=debugging-in-wordpress\">Debugging in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-2\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-3\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-creative-side-of-blocks-vol-4\">The Creative Side of Blocks, Vol. 4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=a-brief-history-of-wordpress-3\">A Brief History of WordPress</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/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</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\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://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-04-13-1\"><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</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:\"Wed, 24 May 2023 19:57: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: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:103:\"WPTavern: #77 – Mario Santos and Luis Herranz on What the Interactivity API Is and How You Can Use 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:48:\"https://wptavern.com/?post_type=podcast&p=145358\";s:7:\"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:117:\"https://wptavern.com/podcast/77-mario-santos-and-luis-herranz-on-what-the-interactivity-api-is-and-how-you-can-use-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:43138:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox has a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes and in this case, how you can start to make your sites more interactive.</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 Mario Santos and Luis Herranz. They both work for Automattic but are sponsored to work full-time in WordPress.</p>\n\n\n\n<p>The main focus of their work is the block developer experience, and they are part of the group of contributors that worked on the Interactivity API proposal.</p>\n\n\n\n<p>The Interactivity API is the main focus of the podcast today, and if you&#8217;re working with blocks and dynamically displaying data, this is sure to be of interest to you.</p>\n\n\n\n<p>We start out the podcast today with the usual introductions, and get to know Mario and Luis. And then we learn what the Interactivity API is and what it can do.</p>\n\n\n\n<p>The conversation is framed around a blog post written by Mario entitled, The interactivity API, a better developer experience in building interactive blocks.</p>\n\n\n\n<p>In this Mario shows examples of what website interactivity is. In short, it&#8217;s the ability for content to be amended on the fly without a page refresh. Of course, this is nothing new on the web. We&#8217;ve been seeing this for years in WordPress sites and elsewhere. But now you&#8217;re going to be able to create interactivity in a standard way across the different blocks on your site.</p>\n\n\n\n<p>The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used, and how it can be implemented.</p>\n\n\n\n<p>We also discussed the fact that in the past developers have gone their own way to make their sites interactive. It all works, but it means that no two implementations are the same. This causes issues if the project is taken over by another developer. But it&#8217;s also a drain on resources.</p>\n\n\n\n<p>Mario and Luis make the point that having a standard way of creating interactivity will benefit everyone in the long run. We get into the weeds a little and talk about the approach the team took when building the API. They decided to use directives and we find out why this was, and what benefit it brings over other possible solutions.</p>\n\n\n\n<p>The project is still experimental, and they&#8217;re looking for people to test and report back on what they find to move the interactivity API forwards.</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 Mario Santos and Luis Herranz.</p>\n\n\n\n<p>I am joined on the podcast today by Luis Herranz and Mario Santos. Hello.</p>\n\n\n\n<p>[00:04:15] Luis Herranz: Hey, hello Nathan.</p>\n\n\n\n<p>[00:04:16] Mario Santos: Thanks for inviting us.</p>\n\n\n\n<p>[00:04:18] Nathan Wrigley: You&#8217;re so welcome. We had an introduction on Slack from Anne McCarthy, who listeners to the podcast may very well have heard of, and she wanted me to chat to these two about the Interactivity API, so we&#8217;re going to get onto that. It&#8217;s a brand new project. Could be very interesting if you&#8217;re a developer implementing it, but also if you&#8217;re an implementer of WordPress websites and not a developer, you&#8217;ll be interested in the outcomes of it.</p>\n\n\n\n<p>Before we do that, the usual questions at the beginning. I&#8217;m going to go to Luis first, if that&#8217;s all right. Would you mind just giving us your backstory, how you&#8217;ve come to be on a WordPress podcast, how long you&#8217;ve been working with WordPress, who you work for as much or as little as you wish.</p>\n\n\n\n<p>[00:04:57] Luis Herranz: Okay, thank you. I started creating websites with WordPress 2010, I think, maybe nine, I don&#8217;t know, a long time ago. And I wanted to start a company in 2013, with Pablo Postigo. And we thought, okay, we wanted to create native apps for different companies, like services and so on.</p>\n\n\n\n<p>And we knew WordPress, so we basically started with what was later known as headless WordPress, but back in 2013. And since then we iterated, we created a team. We got some investment and we started doing things on top of WordPress. Mostly in headless. First with native applications. Then we moved to just web have applications, but still on headless. Very focused on React.</p>\n\n\n\n<p>And in 2019 we launched a open source framework for headless WordPress, powered by React. So we were very focused on developer experience and performance.</p>\n\n\n\n<p>And in 2021, that company, Frontity was acquired by Automattic, so we could become like full-time contributors and focus on, well, basically what the Interactivity API proposal is today. Bringing some of those user experiences, what are possible with other solutions, to WordPress itself, on top of full site editing, or block themes.</p>\n\n\n\n<p>[00:06:31] Nathan Wrigley: Thank you so much. That&#8217;s really interesting. I appreciate your nice history there. Thank you. And we&#8217;ll ask the same question this time of Mario. So Mario, backstory please.</p>\n\n\n\n<p>[00:06:41] Mario Santos: Thank you. Actually, my story is really similar to Luis. Well first, when I finished the degree, I studied industrial engineer, but I didn&#8217;t want to be an engineer. So I started trying different things, and while I got my first job, I created a store in WordPress with WooCommerce. And then, that is when I started to learn about WordPress and all those things.</p>\n\n\n\n<p>And later, based on that, I joined Frontity. I don&#8217;t remember exactly the year, 2015 maybe. And from there I really learned what was WordPress because we started going to meetups to WordCamps, and we started to, well at least I started to learn from the community.</p>\n\n\n\n<p>From there the story is mostly the same as Luis. We were working on headless mainly. We were working with WordPress. And at some point, we were acquired by Automattic, and now I&#8217;m a sponsored contributor, working full-time. And as Luis said, we are focused on the developer experience, and the Interactivity API that we are going to talk about is part of it.</p>\n\n\n\n<p>[00:07:45] Nathan Wrigley: Thank you so much for that. So the Interactivity API, I&#8217;m going to link in the show notes to a post which you can find. Now the post you&#8217;re going to be looking at is on the make.wordpress.org website. It&#8217;s written by Mario. It was on the 30th of March, 2023 that came out, and it&#8217;s entitled, Proposal, The Interactivity API, A Better Developer Experience in Building Interactive Blocks.</p>\n\n\n\n<p>Now, if at any point during this podcast you become a little bit confused or you wish to have some more background, I would recommend pausing and going and reading what is an incredibly lengthy and detailed post, with actually a boatload of interaction and comments as well. It&#8217;s really heartening to see so many people chipping in, and giving their thoughts on this Interactivity API.</p>\n\n\n\n<p>But I guess the best place to kick this conversation off simply asking, what is it? What is the Interactivity API? What does it do? Why does WordPress need such a thing?</p>\n\n\n\n<p>[00:08:47] Mario Santos: I can start with this one. So, the Interactivity API is what we are proposing. The group of contributors that are working on that. It&#8217;s basically a new standard system to easily add front end interactivity to your blocks. Until now, most of the Gutenberg APIs have been focused on the block editor side, and there was unintentional gap on the front end.</p>\n\n\n\n<p>So block developers could choose whatever they want. They could choose any Javascript framework, or other solutions. And the Interactivity API aims to cover that gap. Creating this standard.</p>\n\n\n\n<p>So imagine functionalities like, like this post or e-commerce functionalities like add to cart, or the checkout, the instant search, page transitions, the comments form, without a page reload. So those are the user experiences that the Interactivity API aims to cover.</p>\n\n\n\n<p>In a way that is real easy to build them, and block developers don&#8217;t have to deal with complex scaffolding or external tools. And it&#8217;s important to note also that it&#8217;s completely familiar and compatible with PHP and the block ecosystem. So overall, that&#8217;s what the Interactivity API is. Basically a standard to easily create any interactive experience that your users want.</p>\n\n\n\n<p>[00:10:06] Nathan Wrigley: Luis, anything to add?</p>\n\n\n\n<p>[00:10:09] Luis Herranz: No, it&#8217;s really filling that gap, or even that opportunity of absorbing as much complexity from the developers. Standardizing everything in a single solution, and making sure that it&#8217;s performant, and so on.</p>\n\n\n\n<p>So yeah, there&#8217;s some advancement in web development in other places, mostly in the Javascript ecosystem and WordPress has never been opinionated in the front end, so this is kind of the first time for WordPress.</p>\n\n\n\n<p>But yeah, we think that it&#8217;s an opportunity as well to absorb a lot of complexity for the developers, and to enable some of the user experiences that were not possible with WordPress before.</p>\n\n\n\n<p>[00:10:52] Nathan Wrigley: Now we have some show notes, and we&#8217;ve got a list of questions that we&#8217;re potentially going to run through, but I&#8217;m going to skip to the end, more or less of the list of our questions. Because one of the things I think to do at the beginning would be to provide listeners concrete examples of how this might be used.</p>\n\n\n\n<p>So do you have any examples that you think would demonstrate clearly the kind of things that the Interactivity API is touching on? I&#8217;ll just mention one. Which is the very first thing you&#8217;re going to see more or less when you open up Mario&#8217;s article, and it&#8217;s a video. It&#8217;s pretty short, two minutes long. And it demonstrates something a little bit like Netflix, where you&#8217;ve got, a view of three or four different video thumbnails. There&#8217;s a bunch of different movies there.</p>\n\n\n\n<p>And the intention is that you would like to preserve your favorites. And so there&#8217;s a little heart icon, which is lodged in the top left of the thumbnails for each video. And as you click on that thumbnail, the heart becomes colored in. It goes from gray to red. But also in a different part of the UI, in the right hand of the view, the menu, traditional place for the menu, there&#8217;s a little total which goes up from two to three to four, and if you remove the hearts, it goes back down to two and so on and so forth.</p>\n\n\n\n<p>So that&#8217;s one example of how you might use this. It&#8217;s able to do things on the page without needing to do page refreshes. And the idea is that this will be a standard way of doing it in blocks. And I wonder if you could give us some other examples. You mentioned WooCommerce and things like that. But let&#8217;s go into that a little bit. Some examples of where this might be useful for developers and end users to know.</p>\n\n\n\n<p>[00:12:35] Mario Santos: Yeah, so basically the use case is anything that is interactive and requires Javascript should be able to be done with the Interactivity API in an easy way. So imagine like a slide show or light boxes in the image. So when you click on it, it zooms, and when you click out or scroll, it goes out. Some models like search, subscription, quizzes, e-commerce integrations, like you just have mentioned.</p>\n\n\n\n<p>And one of the features that is enabled by having a standard is the client site navigation that basically is navigating through different pages of your WordPress site without triggering a page reload.</p>\n\n\n\n<p>It&#8217;s important to know that this is something that is going to be enabled by the Interactivity API, but it&#8217;s going to be completely optional. So if you don&#8217;t need it, you don&#8217;t have to use it. But it powers other features like you can see in the movie, that we are paginating between the different pages. We are in the query loop. You have the pagination block, and you can go through the page one to the page two without page reload.</p>\n\n\n\n<p>And for example, well, in the movies demo, we are showing that you can play the trailer and you can keep navigating and the video doesn&#8217;t stop. So those kind of user experiences that, for example, in this podcast you could be listening to this podcast in WP Tavern, and you could navigate to the articles.</p>\n\n\n\n<p>So, maybe you can be reading an article while you are listening to the podcast in the same way. And the podcast will keep playing. Those kind of user experiences are enabled by client side navigation. And you can also find in the movies the instant search that you start typing and the list of results is automatically updated.</p>\n\n\n\n<p>Infinite scroll could also work. Client size submissions like the comments form right now, in typical WordPress sites, when you submit a new comment, it triggers a page load. So this could be done directly in the client. So those are the kind of user experiences that we are talking about. And yeah, I think it&#8217;s important that this is totally compatible with the current block templating system. So whatever you change in the editor is going to keep working.</p>\n\n\n\n<p>[00:14:54] Nathan Wrigley: That&#8217;s great, yeah. Luis, anything to add?</p>\n\n\n\n<p>[00:14:57] Luis Herranz: I would add that I really like that demo. Because it&#8217;s a demo that we didn&#8217;t come up with. It was a demo that existed before. There is a version of that demo created with all the major Javascript frameworks out there. So there is one for React using Next, Vue using Nuxt, Svelte, Quick, Astro and so on.</p>\n\n\n\n<p>So, you can compare now the WordPress version with the other Javascript frameworks, out there. I&#8217;m super happy to say that it really, in terms of user experience now with Interactivity API, you can provide the same user experience than the others. And this demo was created to show these type of complex or great user experiences.</p>\n\n\n\n<p>With WordPress, now with the Interactivity API, you&#8217;re able to create that type of user experience, but leveraging the server side and the block editor. So the other Javascript frameworks version is 100% code, where this movies demo version of WordPress is done with Gutenberg and everything is a block, and you can go and change wherever you want. Which we think it&#8217;s really powerful.</p>\n\n\n\n<p>And there&#8217;s yet another thing there, in comparing with the other frameworks, and it&#8217;s that if you look at the performance is a top performer there. It&#8217;s only 13 kilobytes of Javascript. Only a new experimental mode of Solid is able to be as performant as that one. So yeah, I&#8217;m really happy about enabling those user experiences, but with full compatibility with the Block editor and block themes, and with such performance.</p>\n\n\n\n<p>[00:16:44] Nathan Wrigley: It&#8217;s true to say, I guess, that if you go to that demo, you will not be seeing anything that you haven&#8217;t seen somewhere else online. You&#8217;ve seen the ability to like things, and you&#8217;ve seen infinite scroll before, and you&#8217;ve seen elsewhere online the ability to paginate without a full page refresh, and you&#8217;ve seen comments being added, again without having to submit a new page and so on and so forth.</p>\n\n\n\n<p>But this is creating a standard inside of WordPress. Why did you feel it was important to do this? Why not just leave developers to do their own thing? Again, we&#8217;ve seen WordPress websites implementing this. You know, I&#8217;ve been to countless WordPress websites where I&#8217;ve seen these features.</p>\n\n\n\n<p>Clearly somebody&#8217;s dealt with it before and implemented it in their own way. I guess you&#8217;re just trying to make it so that everybody can build on top of the work that you are doing, rather than everybody going off in their own way and implementing a completely different solution based upon, well, however they wish to do it?</p>\n\n\n\n<p>[00:17:43] Luis Herranz: Yes. It&#8217;s about absorbing complexity. So, definitely anything you can imagine, it&#8217;s possible with WordPress. The thing is how easy is to do it. And with this kind of standard, our hope is that those user experiences are not only easy, but also working practically out of the box.</p>\n\n\n\n<p>[00:18:05] Nathan Wrigley: I&#8217;m guessing that this standard is going to be something that you are aiming at developers. Presumably the developers will then make it fairly straightforward for end users to interact with blocks and what have you, to make this available to them. But how would the standard actually work? What is going on in the background? How are developers going to implement this?</p>\n\n\n\n<p>[00:18:25] Mario Santos: If I can add one note to the why this standard, is I think it&#8217;s also important to note apart from what Luis says, is that it absorbs a lot of complexity. In an ecosystem like WordPress where there are a lot of plugins interacting with other plugins and those kind of experiences that we have.</p>\n\n\n\n<p>It&#8217;s important that following a standard enables things like block communication. For example, we can see what we were talking about in the demo that you are liking a movie and it&#8217;s updating another block, in another place. So if different blocks, created by different block developers, in different plugins are not using the same approach, it&#8217;s really difficult to be able to communicate those blocks. And having a standard solves that. And yeah, that composability and compatibility to nest the structures of different interactive blocks is possible thanks to a standard.</p>\n\n\n\n<p>[00:19:21] Nathan Wrigley: Right. Okay, so you&#8217;re really opening it up so that any block developer can implement this so that, I don&#8217;t know, a different block developer can hook into the exact same standards so that two completely separate blocks, created by completely separate individuals can have interaction via the Interactivity API, right?</p>\n\n\n\n<p>[00:19:42] Mario Santos: Yeah, that&#8217;s it.</p>\n\n\n\n<p>[00:19:43] Luis Herranz: And they also use this, the same code, the same framework. Because if each block developer starts choosing their own framework, maybe some developers like React, some developers like Vue, some developers like Svelte or whatever comes next. Then WordPress sites could end up loading a lot of unnecessary Javascript.</p>\n\n\n\n<p>So yeah, it&#8217;s important. Now that sites are, are a mix of blocks from different developers, these blocks are like small units. Yeah, it&#8217;s important to agree on a single kind of solution.</p>\n\n\n\n<p>[00:20:17] Nathan Wrigley: Yeah, good point. Okay, so how is it actually going to work then? You mentioned in the article, and I think one of you mentioned it just a moment ago, that you&#8217;re trying to make it so that people are familiar with PHP, don&#8217;t necessarily have to get into the whole space of learning React or what have you. I&#8217;m not entirely clear on what the position is there, but is the intention to make this as simple as possible for people who are steeped in WordPress&#8217;s PHP history.</p>\n\n\n\n<p>[00:20:44] Mario Santos: Yes. We wanted to make it as easy as possible to everyone. So yeah, that&#8217;s included. And yes, we said this is compatible with PHP, and it has been designed to be block first and PHP friendly. So yeah, it&#8217;s should be easy.</p>\n\n\n\n<p>And going back to the question, how this standard work. Basically a system based on directives. I&#8217;m not sure, for those who are not familiar with directives, they are a way to extend HTML. They are custom HTML attributes that tell the Interactivity API to attach a specified behavior to a DOM element, or even transform it. So for those familiar with Alpine. it&#8217;s really similar, but it has been designed to work with WordPress.</p>\n\n\n\n<p>[00:21:32] Nathan Wrigley: I know it&#8217;s potentially a bit on the technical side, but you talked about the CSS nature of things there. I&#8217;m wondering if you can give an example of how that might be implemented. What would you actually be doing, declaring those directives?</p>\n\n\n\n<p>[00:21:47] Mario Santos: Okay, in order to create an interactive block using Interactivity API, you have to add directives to your markup. So you have some HTML, so you add custom attributes that are directives, and they call an action that is defined in Javascript in the view.js file of your block.</p>\n\n\n\n<p>[00:22:06] Nathan Wrigley: What is the benefit of doing it in that way? You mentioned that you want it to be available to everybody. Is this the kind of thing that, obviously experienced developers can probably pick this up in a heartbeat, but are you trying to get people, how do we describe this, who are less experienced say. Is this going to be something that you could pretty quickly learn even if your developer chops are not all that impressive?</p>\n\n\n\n<p>[00:22:29] Luis Herranz: Yes. The initial goal for this proposal is more enabling user experiences for WordPress that were not possible before, or were very difficult to do before. We also have a focus on developer experience, but that&#8217;s something that we think we can also keep improving over time.</p>\n\n\n\n<p>This doesn&#8217;t have to be like the final API of creating blocks. We can work, keep working on simplifying things over time. For example, right now none of these touches like the editor part. So if you are creating a block, the edit is just, is still done in the same way that it is done today using a React component. But maybe in the future we can explore how we can kind of extend these directives also to the editor and if it makes sense to unify and simplify the templating for both use cases. But is not the main goal of this proposal at this moment right now.</p>\n\n\n\n<p>[00:23:32] Nathan Wrigley: When you were making decisions about this, and you decided to go with directives instead of things like using React or something. Was there quite a lot of toing and froing? Was there a lot of soul searching, what the best way to do it was? Or was it just fairly straightforward from the very beginning that using directives was the way you were going to do it? How long did the conversation take before you settled on this? is it fair to say that everybody&#8217;s on board with this? This seems to be the way to do it.</p>\n\n\n\n<p>[00:23:58] Mario Santos: We believe so. I mean, we have researched a lot of alternatives. Actually, as we mentioned, we come from Frontity, that it was a React framework. React was like the first alternative we had in mind, but we defined as a list of requirements and we started researching different possibilities, and at the end we come up with the solution to be the only one that it was the only one fully compatible with WordPress.</p>\n\n\n\n<p>Just to explain this a bit better. As directives are custom attributes that we have in the HTML, we are using the HTML as the templating system. And this comes with many benefits, for example, were not possible with React. As HTML is the templating system, the service rendering is supported by default, for example.</p>\n\n\n\n<p>That is something really important in WordPress, or WordPress, APIs like WordPress hooks, that we are used to WordPress hooks in plugins, to extend some functionality, or translations. Those things, with directives using the HTML as the templating system work out of the box. And we can keep using those APIs to even extend the directives.</p>\n\n\n\n<p>And I think this was one of the main blockers to not use React. This system, the service rendering is supported, and the WordPress API are supportive as well. That using other approaches can get tricky or even impossible, I would say.</p>\n\n\n\n<p>[00:25:32] Luis Herranz: Yes. I think we spent like a year or so researching this. And at first we tried with Javascript, JSX, or even JS templates like Vue or Svelte, and so on. But yeah, I think that that direction, things start getting like super complex. And once we switched to using HTML as the templating language, it was like boom. Like everything works out of the box. Everything is like super simple. Everything is compatible. So yeah, it was like seeing the light a little bit.</p>\n\n\n\n<p>[00:26:04] Nathan Wrigley: if I&#8217;m a current block developer, there&#8217;s obviously now going to be this conflict of, do I carry on with what I&#8217;ve been doing so far? I&#8217;ve got some kind of interactive component in my blocks. Do I carry on with what I&#8217;ve been doing up until this point? Or do I flip over and start using the Interactivity API?</p>\n\n\n\n<p>You&#8217;ve obviously just mentioned some reasons why that could be the case. But I&#8217;m wondering if there is anything else buried in there. In other words, what&#8217;s the use case to switch? There&#8217;ll be a bit of retooling, you might have to rewrite a whole bunch of stuff that you&#8217;ve already rewritten.</p>\n\n\n\n<p>Do you think the benefit&#8217;s going to be in there purely for people who are creating new things? Or do you think there&#8217;s going to be a benefit for people who already have existing things out there in the real world, to go and rewrite what they&#8217;re doing using the Interactivity API?</p>\n\n\n\n<p>[00:26:54] Luis Herranz: Of course, as everything in WordPress, this is optional. Even though we want it to become a standard. It&#8217;s optional. But there&#8217;s going to be some kind of sitewide experiences that can only be enabled if all the blocks use this language, or this standard. So yeah, our hope is that there&#8217;s not going to be any reason for new blocks to not use this.</p>\n\n\n\n<p>Because it absorbs a lot of complexity and it works out the box with all these things. But there&#8217;s also going to be some benefit on migrating existing blocks to this system if you want to make your blocks compatible with these new user experiences. And also, get rid of all the complexity that you have to deal with in terms of bundling and performance and things like that.</p>\n\n\n\n<p>[00:27:42] Mario Santos: And actually it can also improve the user experiences, beause due to this complexity, we have seen many cases of blocks using React in the front end, but having issues with the server side rendering or not having server side rendering at all. So it could be a good approach to migrate to the Interactivity API, because it&#8217;s going to be easier to improve their blocks to support server side rendering, hooks, or other user experiences. There may be cases that they could benefit from that as well.</p>\n\n\n\n<p>[00:28:13] Nathan Wrigley: Yeah, I guess the intention would be for a slow but steady migration over to using the Interactivity API, to the point where it just doesn&#8217;t make sense to use anything else. One of you, I can&#8217;t remember which one of you it was, mentioned performance implications there. I&#8217;m just wondering if you could dwell on that a little bit. Have you, in your testing so far, really noticed this? Has it speeded things up, made less use of resources and so on.</p>\n\n\n\n<p>[00:28:39] Mario Santos: Yes. We&#8217;ve been testing and we want to test everything better and we will keep testing it in real sites. But it&#8217;s something that we had in mind from the beginning, that it has to be as performant as possible. And that&#8217;s why the runtime code is so small. It&#8217;s around 10 kilobytes. And yes, Luis before compared with other Javascript frameworks is performing pretty well.</p>\n\n\n\n<p>I think we did mention this, but it&#8217;s using React under the system. So that&#8217;s why it is so small. And yeah, it is actually performant and we are looking for other ways of optimizing it. For example, we want to only send the directives that are needed by the blocks that are in the page. Or we want to send the scripts so they don&#8217;t block the page rendering.</p>\n\n\n\n<p>Or for example, we are also exploring the possibility of the scripts, so they are only load when they are in the view port. So, yeah, overall I would say it&#8217;s performant. It&#8217;s been designed to be performant. The code is relatively small, and we are still looking for ways to optimize it even more.</p>\n\n\n\n<p>[00:29:51] Luis Herranz: Yeah, I think that&#8217;s important. It&#8217;s not only performant today, but you have the guarantee that it&#8217;s going to be performant in the future, in the terms of you don&#8217;t have to, as a block developer, you don&#8217;t have to deal with performance in that sense anymore. Because that&#8217;s absorbed now by, well will be, hopefully absorbed by WordPress at some point.</p>\n\n\n\n<p>And then if there&#8217;s something new in the web platform that can be leveraged to increase the performance and so on, it will be done in the WordPress side. So your block will just benefit from that, from just adopting this standard.</p>\n\n\n\n<p>[00:30:29] Nathan Wrigley: In the article that you wrote, Mario, the first word is the word proposal. Which implies that this is a work in progress, shall we say. And I&#8217;m just wondering how far down the path of usability you would say you&#8217;ve got. In other words, can developers begin using this out of the box? Have you seen real world examples of people using this?</p>\n\n\n\n<p>And have you had some interest from developers who perhaps haven&#8217;t implemented it, but certainly want to get on board? Because I&#8217;m guessing the more yes&#8217;s we can answer to that question, the more likely it is that other people will say, okay, yeah, let&#8217;s take a, let&#8217;s take a look at this. So, can you use it, and have people been using it?.</p>\n\n\n\n<p>[00:31:08] Mario Santos: I would say, yes, you can use it, but we remind that this is still experimental, although we included the proposal word there. This is still experimental, very likely to change. So the APIs that we are using right now, that are used for example in the movies demo site, we are confident that they work, but maybe the syntax change.</p>\n\n\n\n<p>So we haven&#8217;t promoted it yet to be used too much. There are people experimenting with it and giving feedback. For example, there&#8217;s an ongoing experiment in WooCommerce to replicate some of their blocks using directives. But there&#8217;s nothing in production yet because, as I said, this is still experimental.</p>\n\n\n\n<p>There are some missing functionalities that may break your site, and it doesn&#8217;t have any documentation yet. So, I would say you can use it at your own risk because it&#8217;s experimental. We would love people to test it. To give feedback. We want to understand better if it&#8217;s easy to use the blockers that people may face.</p>\n\n\n\n<p>Just to to clarify. In order to be able to use it, we are working on repository in GitHub. It&#8217;s a plugin that you can install, and from there you can create your own interactive blocks. Or if you prefer, there&#8217;s also the repository for the movies, with some examples that you can take a look and modify or whatever you want to do.</p>\n\n\n\n<p>[00:32:34] Nathan Wrigley: Are those repositories linked from Mario&#8217;s article on make.wordpress.org?</p>\n\n\n\n<p>[00:32:40] Mario Santos: Yes.</p>\n\n\n\n<p>[00:32:41] Nathan Wrigley: Okay, so perfect. So if you want to find those, you can just go to the article, which is going to be in the show notes and you can find them all there. Now you&#8217;re both working at Automattic, and although it was only about 30 minutes ago that you gave me your bio, I wasn&#8217;t quite sure.</p>\n\n\n\n<p>I know that you&#8217;re both sponsored full-time in WordPress. Is this project, the Interactivity API, is this a focus for both of you at the moment? In other words, are you being asked to implement this, full-time, part-time? Are you tasked with making this happen?</p>\n\n\n\n<p>[00:33:12] Luis Herranz: Yes, we are. But we are not the only ones. It&#8217;s a large group of contributors. But yes. It was part of when we stopped developing Frontity the headless framework, and joined Automattic, it was precisely to focus on this. And we thought it made a lot of sense. Yeah, and thanks to Automattic for sponsoring us to be able to work on this for WordPress.</p>\n\n\n\n<p>[00:33:40] Mario Santos: One note on this, as you said, there are more contributors working on this Interactivity API, and yeah, we are part of a bigger group that is working on the whole developer experience of Gutenberg. So this is just a project to improve the front end interactive parts of your blocks, but there are ongoing efforts to improve the whole developer experience.</p>\n\n\n\n<p>[00:34:04] Luis Herranz: Yeah, and maybe it&#8217;s a good moment to say that if anyone is interested in this topic, just come to the repository and so on. And contact us and join us.</p>\n\n\n\n<p>[00:34:15] Nathan Wrigley: Yeah, I was going to ask about exactly that. How open are you to contributions? Presumably any people that you can get interested in this, the more the merrier.</p>\n\n\n\n<p>[00:34:24] Luis Herranz: A hundred percent open. We need people. We need people testing these. We need people using it. We need people giving feedback. Sharing different ideas. The most exposure, the better. How do you say that?</p>\n\n\n\n<p>[00:34:37] Nathan Wrigley: Yeah, exactly that. So I guess really if this podcast serves to do anything, it would be exactly that. It would be to encourage people to go over. Read the post on make.wordpress.org, and if you&#8217;re interested and you think that you can help, then certainly it looks like your help would be most welcome. Testing, getting involved.</p>\n\n\n\n<p>In terms of what&#8217;s coming, you mentioned that there are things which you desire to have. So I guess that&#8217;s a roadmap question. What is on the roadmap? What do you want to have in there that is not in there? Don&#8217;t worry about timeframes. It might be a year off, two years off, six months, doesn&#8217;t really matter. What are you hoping that it will do that it currently is unable to do?</p>\n\n\n\n<p>[00:35:16] Mario Santos: Basically finish the Interactivity API, because it&#8217;s not finished. But, for example, our initial idea is to create the list of core directives that covers, I don&#8217;t know, 90% of the use cases, most of the use cases. Although then developers can create their custom directives.</p>\n\n\n\n<p>So for example, that list is not finished yet. We still have to ensure that the APIs work for most of the use cases. We have to finish. And our idea for this is to, at some point, include it as experimental in Gutenberg. Start testing it in real core blocks, for example. Doing some experiments there.</p>\n\n\n\n<p>Ensure that those user experiences are easy to create with the Interactivity API. Start receiving more feedback. So yeah, the idea is that. Keep experimenting. Keep developing the API. Receive feedback of users using it. And I think that&#8217;s it.</p>\n\n\n\n<p>[00:36:16] Luis Herranz: It&#8217;s going to be important the moment when we add, we added as experimental API in Gutenberg. Because that&#8217;s going to increase the exposure by, I don&#8217;t know, ten fold.</p>\n\n\n\n<p>tenfold.</p>\n\n\n\n<p>[00:36:25] Nathan Wrigley: One of you mentioned before we click record that you are going to be giving a presentation at WordCamp Europe around the Interactivity API. By good coincidence, this podcast episode is going out just prior to that. So it may be that people listening to this are very soon going to be getting in the car train or a plane to head to Athens. Which one of you is giving that talk and what is it that you&#8217;re going to be covering exactly?</p>\n\n\n\n<p>[00:36:51] Luis Herranz: That would be me, Luis. I hope Mario helps.</p>\n\n\n\n<p>[00:36:55] Mario Santos: Yeah, I will help.</p>\n\n\n\n<p>[00:36:57] Luis Herranz: It&#8217;s going to be a workshop. I don&#8217;t know if it&#8217;s a two hour workshop or two hour and a half workshop. It&#8217;s going to be hands-on. A step by step introduction to the Interactivity API and creating some interactive blocks and user experiences.</p>\n\n\n\n<p>[00:37:12] Nathan Wrigley: So very much a hands-on experience. You are going to be teaching people and hopefully getting them to learn in real time. Do you know if any of that gets recorded and put on WordPress TV?</p>\n\n\n\n<p>[00:37:22] Luis Herranz: I don&#8217;t know if workshops are recorded or not. Presentations are, yes. I don&#8217;t know.</p>\n\n\n\n<p>[00:37:27] Nathan Wrigley: Yeah, okay. So you can very much be seen at WordCamp Europe, in Athens. Hopefully both Luis and Mario are going to be there. Head over to the workshop and say hi, and get involved. If people want to reach out to either of you, be that on social media or email or whatever works best. Maybe we can go to Luis first. Can you give us some details of where people could get in touch with you, specifically around this topic?</p>\n\n\n\n<p>[00:37:53] Luis Herranz: Sure. I actually started like, I left Twitter for a while and I&#8217;m back from last week or so. I&#8217;m going to try to answer any question that people may have about the Interactivity API and to share the progress there at my personal account, which is @luisherranz, like my name and surname in Twitter.</p>\n\n\n\n<p>[00:38:11] Nathan Wrigley: Thank you very much, and Mario, where can we reach you?</p>\n\n\n\n<p>[00:38:14] Mario Santos: I would say Twitter as well. I&#8217;m not actively tweeting, but if someone writes to me, I will answer for sure. Handle is @santosguillamot. It&#8217;s a bit difficult, so maybe it&#8217;s better to include the link?</p>\n\n\n\n<p>[00:38:28] Nathan Wrigley: I will link to it in the show notes because yeah, that might be the best way of doing it.</p>\n\n\n\n<p>[00:38:33] Luis Herranz: And probably I would say come by the Block Interactivity Experiments repository. So in GitHub, WordPress slash block interactivity experiments. And then there&#8217;s, open a issue, open a discussion. Yeah.</p>\n\n\n\n<p>[00:38:47] Mario Santos: And if people don&#8217;t use Twitter, I think they can reach both of us also in WordPress Slack, if they prefer to do so.</p>\n\n\n\n<p>[00:38:55] Nathan Wrigley: I will link to both of those things as well. I will include both of your Twitter handles and both of your Slacks, plus all of the links to anything that we mentioned during the course of the podcast. So yeah, an interesting discussion about the Interactivity API. I know it&#8217;s not just the pair of you, but Luis and Mario, much appreciation for taking on this work, which hopefully in the near future will be improving, not only the performance, but the interactivity of our WordPress websites. Thanks very much for joining me today.</p>\n\n\n\n<p>[00:39:21] Mario Santos: Thank you a lot for inviting.</p>\n\n\n\n<p>[00:39:23] Luis Herranz: Thanks, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/santosguillamot\">Mario Santos</a> and <a href=\"https://twitter.com/luisherranz\">Luis Herranz</a>. They both work for Automattic, but are sponsored to work full-time in WordPress. The main focus of their work is the block developer experience, and they are part of the group of contributors that worked on the Interactivity API proposal.</p>\n\n\n\n<p>The Interactivity API is the main focus of the podcast today, and if you&#8217;re working with blocks and dynamically displaying data, this is sure to be of interest to you.</p>\n\n\n\n<p>We start out the podcast with the usual introductions and get to know Mario and Luis, and then we learn what the Interactivity API is, and what it can do.</p>\n\n\n\n<p>The conversation is framed around a blog post written by Mario entitled The Interactivity API, a Better Developer Experience in Building Interactive Blocks. In this, Mario shows examples of what website interactivity is. In short, it’s the ability for content to be amended on-the-fly without a page refresh.</p>\n\n\n\n<p>Of course, this is nothing new on the web, we’ve been seeing this for years in WordPress sites and elsewhere, but now you’re going to be able to create interactivity in a standard way across the different blocks on your site. The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used and how it can be implemented.</p>\n\n\n\n<p>We also discuss the fact that in the past developers have gone their own way to make their sites interactive. It all works, but it means that no two implementations are the same. This causes issues if the project is taken over by another developer, but it’s also a drain on resources. Mario and Luis make the point that having a standard way of creating interactivity will benefit everyone in the long run.</p>\n\n\n\n<p>We get into the weeds a little and talk about the approach the team took when building the API. They decided to use directives, and we find out why this was and what benefit it brings over other possible solutions.</p>\n\n\n\n<p>The project is still experimental, and they’re looking for people to test and report back on what they find to move the Interactivity API forwards.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p>Frontity</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/block-interactivity-experiments\">Interactivity API GitHib repo</a></p>\n\n\n\n<p><a href=\"https://github.com/wordpress/wp-movies-demo\">Repo for the movies demo</a></p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2023/session/building-interactive-blocks-a-step-by-step-workshop/\">Luis&#8217; workshop at WordCamp Europe 2023</a></p>\n\n\n\n<p><a href=\"https://twitter.com/luisherranz\">Luis&#8217; Twitter</a></p>\n\n\n\n<p><a href=\"https://twitter.com/santosguillamot\">Mario&#8217;s Twitter</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/block-interactivity-experiments\">Block Interactivity Experiments repo</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, 24 May 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: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:87:\"HeroPress: About how WordPress saved my life. – Sobre como WordPress me salvo la vida\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5574\";s:7:\"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:140:\"https://heropress.com/essays/about-how-wordpress-saved-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=about-how-wordpress-saved-my-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15217:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/05/052323-2-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The opportunity that the Universe gave me is called WordPress. La oportunidad que me dio el Universo se llama WordPress.\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>Hello, my name is Rita Robles Loaiza, I am a computer systems engineer and I live in Cartago, Costa Rica. Today I want to tell you a little bit about my story and how WordPress saved my life.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-about-the-beginnings\"><strong>About the beginnings</strong></h2>\n\n\n\n<p>I am the youngest of 4 siblings, and the one who for many reasons as we say here in Costa Rica &#8220;went out of the basket&#8221;. Since I was a child I had an affinity for technology, I will never forget the first time I used a computer and how my older sister taught me to use Windows 95 back in 1997 or the first time I was able to program a Lego controller in Robotics class at the age of 12. Even with that affinity at 17 years old I said I wanted to be a chef, and I refused the idea of being an engineer. When I left school and the bubble in which I was I could identify that I had a whole world ahead of me and that I had to follow one of the best&nbsp; pieces of advice my mom could have given me: &#8220;Try hard&#8221;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>About My First Job and Entering the University.</strong></h2>\n\n\n\n<p>In 2013 I had the opportunity to start with my first job, that experience opened my mind and was my school, pure and hard about survival and behavior. This job was as an assistant in a Laboratory of chemical and microbiological analysis, the biggest WOW of my life I lived here, in the middle of test tubes, beakers, Erlenmeyer’s I realized all the potential I had, and that creativity and enthusiasm would be my two great weapons, this without knowing that my main virtue is and will be resilience. In the middle of that job and against my wishes I started to study programming, I really did not feel fulfilled even though I liked technology, the Rita of now believes that in the midst of so many changes that rejection was my defense mechanism to everything that was happening around me.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Leaving the Laboratory and the change of university</strong></h2>\n\n\n\n<p>After 2 years I suffered an extremely unfair dismissal disguised as economic problems in the company, after many years I understood that they did me a favor and that this action gave me the wings I needed to join the world of technology, while that happened to me and in the middle of my search for the true taste for what I was studying, I changed University, what a decision, so far has been the best I have taken in terms of education, thanks to that change I found what I really liked and was a breeding ground to achieve complete engineering. Finally, after all this, I was incorporated in different organizations with various roles focused on technology.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rita turned to dust and ashes.</strong></h2>\n\n\n\n<p>After a while and finishing my career, I decided to start my own business and entrepreneurship journey with 2 friends. Together we founded a boutique technology and innovation company, in the midst of our business empiricism we managed to meet many people and develop many projects, it was here where I had my first approach with WordPress in a meetup organized by the community of San Jose. At a certain point, my 2 friends abandoned the project and I decided to continue alone (big mistake), the company kept growing, I kept building many more projects, I incorporated more people until everything blew up in my face, it was absolutely unsustainable, and alone, without a job, and without any hope I became dust and ashes believing that I could not get up.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Teaching as a weapon of defense</strong></h2>\n\n\n\n<p>In 2018, the career director of the University where I studied contacted me to offer me the opportunity to be a Database teacher. I refused, believing that I did not have enough skills to assume that role, that thought was a product of everything that was happening with entrepreneurship, my director insisted, and I accepted, and that was how on May 19, 2018 I taught my first university class. From that moment until now, 5 years later, I can say that it was one of the smartest decisions I could make, teaching opened the doors to the possibility of rebirth, rebuilding myself and learning from my students. It was the university that in times of difficulties made me grow and get up from everything that was happening, it was here where I understood that resilience is and will be my greatest virtue.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress before my eyes</strong></h2>\n\n\n\n<p>In 2019, in a meeting of a women&#8217;s collective, I met the person who pushed me the most in this world, my great friend Ericka, she invited me to go to meetups of the WordPress San Jose community, I knew I had to make an extra effort to just limit myself to go to Meetups, so thanks to her and everything she told me about WordPress I took the initiative to look for tutorials and start learning on my own. It was in this year where I developed my first project with WordPress and opened the doors to one of the career paths that have made me feel happy and fulfilled.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress saved my life</h2>\n\n\n\n<p>Excited by that project, I continued studying and getting involved in the community, participating in meetups, and organizing WordCamps, to the point that this year 2023 I had the opportunity to be Lead Organizer of WordCamp San Jose 2023. In 2019 in the midst of so much uncertainty came to me a job ad in GreenGeeks web hosting in the role of WordPress Specialist, without any expectation I sent my resume until I got the pleasant surprise that I was hired in February 2020.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress and the COVID-19 pandemic</strong></h2>\n\n\n\n<p>It was thanks to this opportunity that I fully potentiated my taste and career towards WordPress, managing to get many projects for Foundations and NGOs in which through WordPress we can reach many interested people. It was also in this instance in which I managed to participate for the first time as a speaker at a WordCamp, this nourished my love for WordPress and the desire to continue sharing with all the people who have the same passion.</p>\n\n\n\n<p>WordPress changed my life, put it in order and gave me guidelines to grow personally and professionally, the opportunity that the Universe gave me is called WordPress and all my life I will be grateful for that.</p>\n\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id_ade563-ae alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n\n<div class=\"wp-block-kadence-column kadence-column_d879cf-9a\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"work-environment\" class=\"kt-adv-heading_1e8c32-97 wp-block-kadence-advancedheading\">Rita&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Rita for a view into her development life and this is what she sent! </p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img width=\"2560\" height=\"1144\" src=\"https://heropress.com/wp-content/uploads/2023/05/IMG_5886-scaled-1.jpg\" alt=\"Rita\" class=\"hotspots-image skip-lazy\" />\n	</div>\n\n\n\n\n<p class=\"kt-adv-heading_b61d45-c4 wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div></div>\n\n</div></div>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading_96d019-44 wp-block-kadence-advancedheading\"><strong>Sobre como WordPress me salvo la vida</strong></h1>\n\n\n\n\nEscucha el ensayo de Rita con su propia voz\n\n\n\n\n\n\n<p>Hola, mi nombre es Rita Robles Loaiza, soy Ingeniera en sistemas de computación y vivo en Cartago, Costa Rica. Hoy quiero contarles un poco sobre mi historia y como WordPress me salvo la vida.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sobre los inicios</strong></h2>\n\n\n\n<p>Soy la menor de 4 hermanos, y la que por muchas razones como decimos aquí en Costa Rica se “salió del canasto”. Desde que era niña tuve afinidad por la tecnología, jamás olvidare la primera vez que utilice una computadora y como mi hermana mayor me enseñó a utilizar Windows 95 allá por 1997 o la primera vez que pude programar un controlador de Lego en la clase de Robótica a los 12 años. Aun con esa afinidad a los 17 años decía que quería ser chef, y me negaba a la idea de ser Ingeniera. Cuando Sali del colegio y de la burbuja en la que me encontraba pude identificar que tenía todo un mundo por delante frente a mis ojos y que debía seguir uno de los mejores consejos que mi mamá me ha podido dar: “Esfuérzate”.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sobre Mi primer trabajo y el ingreso a la Universidad</strong></h2>\n\n\n\n<p>En el 2013 tuve la oportunidad de iniciar con mi primer empleo, definitivamente esa experiencia abrió mi mente y fue mi escuela, pura y dura sobre la sobrevivencia y el comportamiento. Este empleo fue como asistente en un Laboratorio de análisis químicos y microbiológicos, el mayor WOW de mi vida lo viví aquí, en medio de tubos de ensayo, beakers, erlenmeyers me di cuenta de todo el potencial que tenía y que la creatividad y el entusiasmo serian mis dos grandes armas, esto sin saber que mi principal virtud es y será la resiliencia. En medio de ese empleo y contra mis deseos empecé a estudiar programación, en serio no me sentía plena a pesar de que me gustaba la tecnología, la Rita de ahora cree que en medio de tantos cambios ese rechazo era mi mecanismo de defensa ante todo lo que sucedía a mi alrededor.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>La Salida del Laboratorio y el cambio de Universidad</strong></h2>\n\n\n\n<p>Después de 2 años sufrí un despido sumamente injusto disfrazado de problemas económicos en la empresa, después de muchos años entendí que me hicieron un favor y que esa acción me dio las alas que necesitaba para incorporarme laboralmente en el mundo de la tecnología, mientras me sucedía eso y en medio de mi búsqueda por el verdadero gusto hacia lo que estaba estudiando, me cambie de Universidad, vaya decisión, al momento ha sido la mejor que he tomado en temas de educación, gracias a ese cambio encontré lo que realmente me gustaba y fue caldo de cultivo para lograr completar la ingeniería. Finalmente, después de todo esto, me fui incorporando en distintas organizaciones con diversos roles enfocados en tecnología.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rita convertida en polvo y cenizas</strong></h2>\n\n\n\n<p>Después de un tiempo y terminando mi carrera decidí iniciar el viaje al negocio propio y el emprendimiento con 2 amigos. Juntos fundamos una empresa boutique de tecnología e innovación, en medio de nuestro empirismo en negocios logramos conocer a muchas personas y desarrollar muchos proyectos, fue aquí donde tuve mi primer acercamiento con WordPress en un meetup organizado por la comunidad de San José. En un momento determinado, mis 2 amigos abandonaron el proyecto y yo decidí continuar sola (grave error), la empresa siguió creciendo, seguí construyendo muchos más proyectos, incorpore más personas hasta que todo exploto en mi cara, era absolutamente insostenible, y sola, sin empleo, y sin esperanza alguna me convertí en polvo y cenizas creyendo que no podía levantarme.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>La docencia como arma de defensa</strong></h2>\n\n\n\n<p>En el 2018, el director de carrera de la Universidad en la cual estudie me contacto para ofrecerme la oportunidad de ser profesora de Bases de Datos. Yo me negué, creyendo que no tenía las habilidades suficientes para asumir ese rol, ese pensamiento era producto de todo lo que estaba sucediendo con el emprendimiento, mi director insistió y yo acepté, y así fue como el 19 de mayo del 2018 impartí mi primera clase universitaria. Desde ese momento hasta ahora, 5 años después, puedo decir que fue una de las decisiones más inteligentes que pude tomar, la docencia me abrió las puertas a la posibilidad de renacer, reconstruirme y aprender de mis estudiantes. Fue la universidad la que en tiempos de dificultades me hizo crecer y levantarme de todo lo que estaba sucediendo, fue aquí donde entendí que la resiliencia es y será mi mayor virtud</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress ante mis ojos</strong></h2>\n\n\n\n<p>En el 2019, en una reunión de un colectivo de mujeres, conocí a la persona que más me impulso en este mundo, mi gran amiga Ericka, ella me invito a ir a meetups de la comunidad de WordPress San José, yo sabía que debía hacer un esfuerzo adicional a solamente limitarme a ir a Meetups, así que gracias a ella y todo lo que me contaba sobre WordPress tome la iniciativa de buscar tutoriales y empezar a aprender por mi cuenta. Fue en este año donde desarrolle mi primer proyecto con WordPress y abrir las puertas a uno de los caminos laborales que más me han hecho sentir feliz y plena.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress salvo mi vida</strong></h2>\n\n\n\n<p>Emocionada por ese proyecto, seguí estudiando e involucrándome en la comunidad, participando en meetups y organizando WordCamps, a tal punto que este año 2023 he tenido la oportunidad de ser Lead Organizer del WordCamp San José 2023. En el 2019 en medio de tanta incertidumbre llego a mi un anuncio de empleo en GreenGeeks web hosting en el rol de WordPress Specialist, sin expectativa alguna envié mi currículo hasta llevarme la grata sorpresa que me contrataron en febrero del 2020.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress y la pandemia del COVID-19</strong></h2>\n\n\n\n<p>Fue gracias a esta oportunidad que potencialice completamente mi gusto y carrera hacia WordPress, logrando conseguir muchos proyectos para Fundaciones y ONG en los cuales por medio de WordPress podemos llegar a muchas personas interesadas. También fue en esta instancia en la cual logre participar por primera vez como speaker en un WordCamp, esto alimento mi cariño hacia WordPress y el deseo de poder seguir compartiendo con todas las personas que tenemos esta misma pasión.</p>\n\n\n\n<p>WordPress cambio mi vida, la puso en orden y me dio pautas para crecer personal y profesionalmente, la oportunidad que me dio el Universo se llama WordPress y toda mi vida estaré agradecida por eso.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/about-how-wordpress-saved-my-life/\">About how WordPress saved my life. &#8211; Sobre como WordPress me salvo la vida</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 May 2023 12:30:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Rita Robles Loaiza\";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:101:\"WPTavern: Automattic Releases wp-now: A Local Development Environment Powered by 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=145373\";s:7:\"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:111:\"https://wptavern.com/automattic-releases-wp-now-a-local-development-environment-powered-by-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:2530:\"<p>Automattic has published a new project called <a href=\"https://twitter.com/AutomatticEng/status/1660997741793927168\">wp-now</a> that creates a local development environment in seconds. The tool is a NodeJS app that is powered by 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>. </p>\n\n\n\n<p>wp-now allows developers to quickly spin up a new WordPress site with their chosen theme and then open it in the browser automatically logged in as admin without having to enter any credentials. It uses the <a href=\"https://wordpress.org/plugins/sqlite-database-integration\">SQLite Database Integration plugin</a> for its database and developers can quickly swap out versions of PHP and WordPress for testing.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Five minute install? wp-now launches your local environment in five seconds <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /><a href=\"https://t.co/cKkUDN8uHE\">https://t.co/cKkUDN8uHE</a> <a href=\"https://t.co/QdgZle5mgw\">pic.twitter.com/QdgZle5mgw</a></p>&mdash; AutomatticEng (@AutomatticEng) <a href=\"https://twitter.com/AutomatticEng/status/1660997741793927168?ref_src=twsrc%5Etfw\">May 23, 2023</a></blockquote>\n</div>\n\n\n\n<p>Automattic software engineer Antonio Sejas explained how it works: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When you use <code>wp-now</code> from a directory, we create a php-wasm instance, download the selected WordPress version and mount the necessary directories in a virtual file system (VFS). Then, we initiate a NodeJS express server that listens and proxies all requests to the php-wasm. As a result, <code>wp-now</code> can easily log you into WordPress automatically, activate plugins and themes, and automatically configure your WordPress site.</p>\n</blockquote>\n\n\n\n<p>wp-now can be <a href=\"https://www.npmjs.com/package/@wp-now/wp-now\">installed directly from npm</a>. It works across all platforms (Mac, Linux, and Windows). Although it doesn&#8217;t support custom domains or SSL yet, Automattic has it on the roadmap. wp-now contributors are also looking at auto detecting when a file is modified and automatically refreshing the browser, importing a database from another WordPress site, and adding a deploy feature for SSH/SFTP hosting, among other features.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 May 2023 02:48:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:64:\"Post Status: Launching a WordPress Product in Public: Session 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-14/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47211:\"<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/coreymaass\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> continue the development of their new WordPress plugin, <a href=\"https://crop.express/\">Crop.Express</a>. They delve into the world of image-generation tools for content marketing. In this insightful conversation, they explore creating customizable templates to generate visually appealing images for blog posts, social media, and other channels. Discover how these tools can help marketers enhance their content, highlight important quotes and summaries, and streamline sharing. Dive into the workflow and envision a future where content creators can effortlessly generate eye-catching images that elevate the presentation and value of their posts.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Continuous Learning:</strong> The WordPress ecosystem constantly evolves, so staying updated with the latest trends, technologies, and best practices is crucial. Engage in continuous learning through online resources, forums, and communities, and attend WordPress events and conferences.</li>\n\n\n\n<li><strong>Security Measures:</strong> WordPress security should be a top priority. Implement robust security measures such as using strong passwords, keeping themes and plugins up to date, using reliable security plugins, regularly backing up your website, and staying vigilant against potential vulnerabilities.</li>\n\n\n\n<li><strong>Performance Optimization: </strong>Website speed and performance are essential for user experience and search engine rankings. Optimize your WordPress site using lightweight themes and plugins, optimizing images, leveraging caching techniques, and minimizing HTTP requests. Regularly monitor and optimize your site&#8217;s performance to ensure a smooth and fast user experience.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://thevidabars.com/\">Vida Bars</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=\"http://twitter.com/coreymaass\">Corey Maass</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<h2 class=\"wp-block-heading\">Session 14 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p>[00:00:00] Dude. Hey.&nbsp;</p>\n\n\n\n<p>[00:00:04] <strong>Cory Miller:</strong> All right. Session 14. I had to go on YouTube and look, but golly, that&#8217;s been. Three months, three and a half months. Been good stuff. Had fun on these, but we have some good things to talk about today. I think you were gonna show me some of that stuff and come up with a punch list of what you&#8217;ve been manically working on.</p>\n\n\n\n<p>Yeah, I&#8217;m meager man. And I know the other part of the agenda is now baton is. Getting handed over to me to really drive marketing and the work of, that I can actually do with your class. Yep, exactly. Genius and insight and feedback. All right, you want to any thoughts or do you want to kick&nbsp;</p>\n\n\n\n<p>[00:00:53] <strong>Corey Maass:</strong> it off and No, lemme share. Which 1:00 AM I sharing? [00:01:00] Share, update, plugin. Let&#8217;s make it smaller. Come on window.</p>\n\n\n\n<p>You see that? Okay? Yep. And hold on just a second. Where is.</p>\n\n\n\n<p>Real life needs and leads of a dog. Must be in the office with me at all times. Okay, go lay down. All right we have a blog WordPress install. I&#8217;ve been testing with Yost, but for the fun of it, we&#8217;ll leave that. Deactivated general settings. Oh, it&#8217;s interesting that didn&#8217;t reset. But anyway, the title of this blog tagline, so this is the description of this blog.</p>\n\n\n\n<p>So I&#8217;m just like, some things I [00:02:00] want to sensible, sensible defaults basically And looking at these variables because they&#8217;ll show up later. If you go, so you have a WordPress install you&#8217;ve just downloaded O M G I M G we need Oh, you have that WorkFlowy document I think I shared with you.</p>\n\n\n\n<p>Yeah. Did. So these are, I&#8217;ll take notes here. Plug in marketing. So it&#8217;s like, what do we call the damn thing? I plugged in. It&#8217;s O M G I M G and all capital letters we decided on, which I love. And then what do we call it? I&#8217;m, so a couple of neat things with this. We, I think we, we touched on it a little bit or I was thinking it earlier today, is we don&#8217;t need, because we&#8217;re not going in the plug-in repo, we don&#8217;t need a readme, we don&#8217;t need there&#8217;s a bunch of SEO [00:03:00] stuff that we don&#8217;t need to worry about, that we were messing around with Crop Express.</p>\n\n\n\n<p>But I think we still want, we still need a description for here. We still need do we just call it O M G I M G? Do we want another word? Image builder, maker, candlestick maker, something in there. So yeah, what do we call it? What should be like, What we see on the plugins page,</p>\n\n\n\n<p>Description name oops. All right. So anyway we activate it. It takes you to a welcome screen. Right now it says, welcome to O M G I M G. Let&#8217;s get you started creating your first image, an open graph image for your site. The first image is the image people see when they share your [00:04:00] sites on socials.</p>\n\n\n\n<p>So we can review all this copy later, but Roger that we just need an icon I&#8217;ve been using, actually let&#8217;s do, if I go to post status, it&#8217;s gonna be the real lit litmus test, right?</p>\n\n\n\n<p>Is there a high res version? Hey, look at that. Holy leash. Nikes. No, that&#8217;s good. It&#8217;s an svg. Okay which we don&#8217;t support currently. We&#8217;re gonna want to I can. I got it. Because we can just go SVG to p and g. It&#8217;s one of my favorite. These are my favorite sites. There&#8217;s this whole series of sites that look just like this.</p>\n\n\n\n<p>It&#8217;s compress P and g. Yeah, compress jpeg, compress All these are my favorite sites. With the elephant. And I contacted this person once and I was like, can I give you money because I use your websites,[00:05:00] every day. And he is no, I make more from ads than you could ever give me.</p>\n\n\n\n<p>Okay. It&#8217;s a good problem to have anyway, so let&#8217;s show.</p>\n\n\n\n<p>Did it really make it that small?</p>\n\n\n\n<p>Oh, no, it really does make it that small.</p>\n\n\n\n<p>Okay. So yes, you should send me a version if you have it.</p>\n\n\n\n<p>I should have asked you for this earlier,</p>\n\n\n\n<p>SVG whole doc. Why not? It really is that small though.&nbsp;</p>\n\n\n\n<p>What size do you need? I&#8217;ve got just as big as possible with the transparent background.</p>\n\n\n\n<p>I&#8217;ve got three 20,&nbsp;</p>\n\n\n\n<p>[00:05:41] <strong>Cory Miller:</strong> about three 20. Let&#8217;s see.</p>\n\n\n\n<p>I had these made for Different social platforms. So they&#8217;re already scaled down.&nbsp;</p>\n\n\n\n<p>Yep. Do you want an eps?&nbsp;</p>\n\n\n\n<p>[00:05:54] <strong>Corey Maass:</strong> I think I&#8217;ve almost got it.</p>\n\n\n\n<p>[00:05:55] <strong>Cory Miller:</strong> We&#8217;re illuminating some of the things that we&#8217;ve talked about,&nbsp;</p>\n\n\n\n<p>[00:05:59] <strong>Corey Maass:</strong> right? [00:06:00] Yeah. Around tight.</p>\n\n\n\n<p>Yep. Yep. This is compelling listening and watching for anybody out there. There we go. I got it. And I&#8217;m being a little pedantic because I want this to be a good demo for you. Oops. Export p and g thousand by a thousand giggles. Heat export. Having fun. Download save. All right, I got it.&nbsp;</p>\n\n\n\n<p>[00:06:39] <strong>Cory Miller:</strong> Here we go.</p>\n\n\n\n<p>LeBron Giggle in their heat map software is probably going, oh my God.&nbsp;</p>\n\n\n\n<p>[00:06:44] <strong>Corey Maass:</strong> Tertiary dancing. All right, I&#8217;m gonna drag in the PS logo, see if this works. Hey, you get a little preview. So there&#8217;s a bug. Go bugs [00:07:00] dropping image shows preview, but placeholder doesn&#8217;t. Disappear.</p>\n\n\n\n<p>Doesn&#8217;t matter though. So you create, so this is going to automatically generate the first one based on I think it&#8217;s the, oh, let&#8217;s find out. And there&#8217;s a fatal error because get options hasn&#8217;t been set site. There&#8217;s a little live coding for you.</p>\n\n\n\n<p>Oh,</p>\n\n\n\n<p>obviously I haven&#8217;t walked through this in a while.</p>\n\n\n\n<p>Oh. Called up there. I see.&nbsp;</p>\n\n\n\n<p>What did happen?</p>\n\n\n\n<p>Oh, I know what I did. Yeah. So change this to until good options. [00:08:00] There we go. Let&#8217;s try that again. Refresh. Grab the PS logo, P and G</p>\n\n\n\n<p>and nothing happens. Okay, skip. Anyway it should have created one, but we&#8217;ll create one. So this is the other workflow, basically the idea being that welcome screen, you drop in a logo and then it just spits one out. Yep. So that you&#8217;re not, so that you&#8217;re, on board you, and obviously we&#8217;ll tweak that.</p>\n\n\n\n<p>But I wanted to get that we had talked about. The experience of it. Essentially you drop an image and it&#8217;s just done and then you&#8217;d click then option to set it as an OG image. But here we&#8217;ll say created open OG image. Right now we&#8217;ve got logo only and then side by side are mostly working.</p>\n\n\n\n<p>Top bottom isn&#8217;t done and simple was the old version I need to clean up, but we&#8217;ll start with logo only. Let&#8217;s see if this works.[00:09:00] We&#8217;re close. Line app, line one 20. Oops. Of course I&#8217;ve been hacking away at this, so lots of errors. I get it. No issue here.</p>\n\n\n\n<p>But anyway okay, so real simple, I just want this to go away. If set.</p>\n\n\n\n<p>There we go. So real simple options here. You&#8217;ve got a background and you&#8217;ve got an image. And so that&#8217;s all the options that you&#8217;ve got here on the left. So you can set a background color. So if we go to Do you know what color the post status orange is? It&#8217;s the,</p>\n\n\n\n<p>like the official&nbsp;</p>\n\n\n\n<p>[00:09:51] <strong>Cory Miller:</strong> I don&#8217;t think it&#8217;s,&nbsp;</p>\n\n\n\n<p>[00:09:53] <strong>Corey Maass:</strong> oops, I spelled you wrong. Post status.com. There we go. [00:10:00] Inspect.</p>\n\n\n\n<p>It&#8217;s that one. Okay, so hypothetically you&#8217;d come in, you&#8217;d say, oh, and I&#8217;ve added global options. So there&#8217;s under settings, you can set a site name if you want it different than the WordPress name, site description, site url. There&#8217;s also going to be Default colors. So it&#8217;s if you create a new one, instead of you having to set the background color every time it&#8217;d import these.</p>\n\n\n\n<p>I also think I showed you, I just added or showed a screenshot. I just added support for Google. Fonts a little clunky but is working, which is cool. Ah, okay. So this is what it was supposed to do, is it creates your first project With, here&#8217;s your channel, here&#8217;s your template. So logo only, open graph.</p>\n\n\n\n<p>So anyway, back in the editor, so you changed the [00:11:00] background color to be the post status one, and of course it doesn&#8217;t paste FC 78 15.</p>\n\n\n\n<p>FC 78 15. So there&#8217;s the post status low color. I added an overlay just by default, so if you wanted to add like, A gradient, something to make it a little more dynamic. I&#8217;m gonna add a little toggle for this so you can turn it off all, all together. You can also rotate it so you can make the gradient come from a different direction if you want.</p>\n\n\n\n<p>I guess the hack right now is you would just go in here and make this the same as that orange. Okay.</p>\n\n\n\n<p>Looks like it&#8217;s still adding a gradient, but anyway. But the idea is right now I&#8217;ve added, I&#8217;m basically flushing out. I&#8217;m trying to flush out like one of each option, like a color picker, a or slider, [00:12:00] a bunch of different things. And so we can keep adding these selectors basically. So you can, you&#8217;ll have options all day long.</p>\n\n\n\n<p>You come over here and. So that&#8217;s how you could figure the background, right? And then for the image this should by default, say site logo, which is the thing we uploaded. But I&#8217;ve added support for the media library. So if you wanted to do let&#8217;s grab one of my testing document WordPress.</p>\n\n\n\n<p>Nope. Testing. So I&#8217;ve been using this gear, so you could also select an image from the media library or the default site logo. You set the size, you could rotate it. Rotate it if you want to.</p>\n\n\n\n<p>So dead simple. Save your changes. And it&#8217;s there every time, right? There&#8217;s an option to view it, [00:13:00] full screen. And then there&#8217;s the, you saved say download. I don&#8217;t know if you, I don&#8217;t think you can see that part, but it downloads right now. It&#8217;s a funny name, but we&#8217;ll give it a better name when you download it so you&#8217;ll know what it looks like in the download.</p>\n\n\n\n<p>And then there&#8217;s also the option to save it as your open graph image. And so we don&#8217;t really have a way to demo that, but what it does is it will it&#8217;ll write headers to your, to, to the website so that anytime your website is shared this&#8217;ll be your OG image. Okay. And then also so I think, so it&#8217;s saving it as OG image.</p>\n\n\n\n<p>Yeah. Puts it into your media library and then. And then that&#8217;s what gets shared out. So another bug here or an extra feature we want is to save. In addition, to save as to download, we wanna be able option to save to media Library. [00:14:00] So it&#8217;ll just show up in the media library. And saving is the OG image.</p>\n\n\n\n<p>So when you go back to projects, there&#8217;s a little flag that says this is your OG image, cuz you can only have one obviously. And so it&#8217;s if you set a different one. So here&#8217;s that same menu you can download directly from here. Or save it as the OG image. And then, and this&#8217;ll replace whatever one is the OG image.</p>\n\n\n\n<p>Let&#8217;s create another. Go ahead. Yeah, let&#8217;s create&nbsp;</p>\n\n\n\n<p>[00:14:26] <strong>Cory Miller:</strong> another one. But how did you get the name Project five? Number&nbsp;</p>\n\n\n\n<p>[00:14:29] <strong>Corey Maass:</strong> five. So it&#8217;s, these are just like posts. So if you create A post has an id. So project number five. So yeah, one of the Go&nbsp;</p>\n\n\n\n<p>[00:14:39] <strong>Cory Miller:</strong> ahead default, or we just naming that by default or do they have the&nbsp;</p>\n\n\n\n<p>[00:14:44] <strong>Corey Maass:</strong> What would we name it?</p>\n\n\n\n<p>[00:14:47] <strong>Cory Miller:</strong> No, I was it. Do we, do they have the option to name it&nbsp;</p>\n\n\n\n<p>[00:14:52] <strong>Corey Maass:</strong> something different? Oh, they don&#8217;t yet. So let&#8217;s add that to the list. Custom project [00:15:00] name</p>\n\n\n\n<p>because, yeah, I thought about that too, like that once it gets up to 1,986,426, it&#8217;s like, what&#8217;s, which one are we talking about?&nbsp;</p>\n\n\n\n<p>[00:15:12] <strong>Cory Miller:</strong> I&#8217;m just thinking too, for sorting, like we probably want to say it&#8217;s O N G I M G and then they name it like default homepage or something. And then when we get into the single post pages and stuff, maybe it&#8217;s post ID or post name and number or something like that.</p>\n\n\n\n<p>Just so they, when they see this page, it&#8217;s gonna get pretty filled.&nbsp;</p>\n\n\n\n<p>[00:15:37] <strong>Corey Maass:</strong> Yep. Yeah, the here it says SITEWIDE images. I don&#8217;t think this is working right now because I&#8217;ve made a bunch of changes to the site version. There is a menu option here for O M G I M G per post. Yeah, it&#8217;s totally broken right now.</p>\n\n\n\n<p>But it&#8217;ll, when it&#8217;ll look similar, [00:16:00] but it, but up here it says, Name of post, today&#8217;s specials or whatever, and then it, and then has your images, so you do have context. But yeah under the project number name we&#8217;ll want to come up with some naming convention. The other thing that I, so let&#8217;s do that custom project name, but right off the bat, maybe a date or we could do the name of the template.</p>\n\n\n\n<p>Default project name, using date or template or both because it would be like April 26th. OG image would at least give you some context.&nbsp;</p>\n\n\n\n<p>[00:16:40] <strong>Cory Miller:</strong> Ni picky. But when you say CRI project, that button right there. Yep. C. Could that be create O n G? Im G.&nbsp;</p>\n\n\n\n<p>[00:16:48] <strong>Corey Maass:</strong> Absolutely.</p>\n\n\n\n<p>Not nitpicky. That&#8217;s the kind of stuff I please jump in. Okay. Especially cuz most, most of those changes are small. Yeah. Yeah. I&nbsp;</p>\n\n\n\n<p>[00:16:58] <strong>Cory Miller:</strong> think coming back to the branding, like [00:17:00] that&#8217;s what we&#8217;re doing is M G I M G and that&#8217;s what they&#8217;re getting and I think&nbsp;</p>\n\n\n\n<p>[00:17:04] <strong>Corey Maass:</strong> that&#8217;s good. Yep. Okay. Let&#8217;s do another open graph.</p>\n\n\n\n<p>Actually let&#8217;s do an Instagram and again. So instead of logo only now we get into side by side, so it&#8217;s a bit more complicated.</p>\n\n\n\n<p>So this is a logo on the left and text options on the right. So again, we do a background color. See there&#8217;s a little bug of. That border.&nbsp;</p>\n\n\n\n<p>[00:17:35] <strong>Cory Miller:</strong> You&#8217;re a very daring dev. I always like doing this stuff though, but a lot of devs have worked with her, like they don&#8217;t want to see, they don&#8217;t want you to see some of this. I&#8217;m like,&nbsp;</p>\n\n\n\n<p>[00:17:45] <strong>Corey Maass:</strong> Hey. Oh, I want you to see it as broken as possible. Cuz then it&#8217;s like one, one, it&#8217;s part of the journey and what we&#8217;re trying to illustrate with all of our, everything we, we&#8217;ve been doing in public Mo honestly, most of our conversations have been [00:18:00] public.</p>\n\n\n\n<p>And that&#8217;s I also wanna show, this is as part of our journey. You have barely usable products, but it&#8217;s, then you clean it up. So same thing, overlay color, make it nice and ugly for you. So let&#8217;s just do white and green. With that angle. The image, again, you can choose, that&#8217;s supposed to be site</p>\n\n\n\n<p>site, logo side.</p>\n\n\n\n<p>Just clicking through to see that it all works, so it changes to this other thing. Or you jump back and it&#8217;s the site logo, make it bigger title. So this is the stuff that I&#8217;ve been really working on right now. I&#8217;m, I don&#8217;t have Google fonts enabled. I. But you still get the idea. So we&#8217;ve got some default font families basically.</p>\n\n\n\n<p>So if you wanted handwritten I [00:19:00] don&#8217;t know if bold works. No, I was just doing that this morning. But you will have the option to ignore this input and you will have, but you will have the option to say bolder italics, cuz it&#8217;s I want you to be able to customize the text to your heart&#8217;s content.</p>\n\n\n\n<p>Text color. So you might hear, you might match the orange type of thing, text size,</p>\n\n\n\n<p>but you&#8217;d say, I want this tighter. There&#8217;s line height. If you wanna get, what&#8217;s that tweak to your heart&#8217;s content. Exactly. And again, these are not quite the, like you gave me some comps of the ultimate post status. Social image. And so based on that, I want to give us, give you all the options.</p>\n\n\n\n<p>If you were a customer coming in, you&#8217;d say, okay, I&#8217;d upload my logo here. I might choose a a font that not looks like that. [00:20:00] Like that. I&#8217;d want it bold, I&#8217;d want it all caps. So we want all those options. And then, Be able to make it look good in the context of this template. There&#8217;s the title, then you go to the subtitle.</p>\n\n\n\n<p>And so you&#8217;d have site url, site description. Remember I said, this is where we put in the description of the blog. But it&#8217;s like most likely you&#8217;d want the title of the blog and the url, so you&#8217;d do that, but it&#8217;s, and there&#8217;s a setting for let me save this. So there&#8217;s a setting again. So by default, if you&#8217;re like, our webs, our website is http and www, but we really just want it to be post status.com or if you had a short u r l, po.st or something like that, you could put that in here.</p>\n\n\n\n<p>So let&#8217;s do post status.com. [00:21:00] Save. Go back to here. Oh. So you know, this is what your project screen looks like. So you&#8217;ll see all of your projects. And yeah, we&#8217;re gonna want ability to sort projects by name most recently updated, et cetera. So we&#8217;ll add that to that screen. Jumping back in here, Seesa.</p>\n\n\n\n<p>Now, the, by default it brings in post status.com, but there&#8217;s also an option of custom text. So if you wanted to put in dot, something or post status.com, link to, something specific, a blog, something like that, right? Text color X size, but you get the idea.</p>\n\n\n\n<p>[00:22:00] So yeah, that&#8217;s where we&#8217;re at.</p>\n\n\n\n<p>No problem, dude.&nbsp;</p>\n\n\n\n<p>[00:22:05] <strong>Cory Miller:</strong> So from the premise of the Sitewide OG image probably when I was doing that for, it was so good. Can I show you some stuff&nbsp;</p>\n\n\n\n<p>[00:22:14] <strong>Corey Maass:</strong> real quick? Yeah, absolutely.</p>\n\n\n\n<p>[00:22:16] <strong>Cory Miller:</strong> Okay. So I was playing, this is off topic, but I was playing with some of this, like more into the blog post stuff. So you can see some of these things. I was just like trying to be the client. This is not it. Okay. Where did that play with it?</p>\n\n\n\n<p>It&#8217;s in our.</p>\n\n\n\n<p>Oh, here we go.</p>\n\n\n\n<p>But this side by side image, I think side by side thing is gonna be really great for the in, in just what we need for. Initial stuff. Yep. So I was running around with like logo on top here.&nbsp;</p>\n\n\n\n<p>[00:22:52] <strong>Corey Maass:</strong> Yeah, your number 15 is what I was emulating and then. Once, once I&#8217;ve got all the kinks worked [00:23:00] out, it&#8217;s easy enough to duplicate it to, I called it top and bottom or something.</p>\n\n\n\n<p>So logo above, and so that becomes your like 14 or 13 where it&#8217;s the same elements on the page. Just, up and down instead of left and right. Yeah, I really, as I was&nbsp;</p>\n\n\n\n<p>[00:23:18] <strong>Cory Miller:</strong> doing this just for post, I was like, this is what, this is really what you need. You just need. Logo, brain thing, tagline. And so that was really good for me to go through that experience.</p>\n\n\n\n<p>But yeah, I guess I&#8217;ve got four cards here. Put it on the right, put it on the left, but it above, but it below.&nbsp;</p>\n\n\n\n<p>[00:23:40] <strong>Corey Maass:</strong> Yep. And I, and so actually I&#8217;m now thinking, so maybe I. Like I do the, just an image, cuz that was one of the ones we saw on that gallery. And then, and I think it&#8217;s a really good place to start.</p>\n\n\n\n<p>Basically it&#8217;s the simplest. And then we will, [00:24:00] and then I will adjust the side by side to be, we&#8217;ll call it the, like the default business card. And I will put in little toggles that are like, Because again, it&#8217;s, I&#8217;m trying to flush out potential options, right? And so if there was an option that was like logo left top, right bottom, cuz it&#8217;s all essentially the same.</p>\n\n\n\n<p>All of those cards from our perspective are the same, just reordering of things. But logo, title, U R L. And I just lock that shit down and then we&#8217;re ready to publish, essentially, like I, as you saw, like I wanna, I want to clean up the welcome screen a little bit more cuz I do think that onboarding&#8217;s gonna make a big difference rather than it just being a blank screen when you sign in and it&#8217;s done.</p>\n\n\n\n<p>It was pretty simple to implement. Yeah, I really think, and then,&nbsp;</p>\n\n\n\n<p>[00:24:58] <strong>Cory Miller:</strong> Go ahead. Just go to the experience [00:25:00] is like those five are all we need. Yep. Specifically for the homepage you saw here, just this is for next level step stuff. Yep. But I was like, when you told me I could have a screenshot, I was like, oh yeah.</p>\n\n\n\n<p>[00:25:16] <strong>Corey Maass:</strong> Oh yeah. When once I add that, like that&#8217;s gonna be a lift. Because it&#8217;s, a screenshot within a screenshot kind of thing. But so I&#8217;ll circle back to that. But is, so is this your official, the official font of post status? Yes. And what font is it?</p>\n\n\n\n<p>Go round A round. I believe&nbsp;</p>\n\n\n\n<p>[00:25:40] <strong>Cory Miller:</strong> it&#8217;s a Google font.</p>\n\n\n\n<p>Yes, it is.&nbsp;</p>\n\n\n\n<p>[00:25:43] <strong>Corey Maass:</strong> Okay. And do you make it bold or is it just, is that how it comes? I&nbsp;</p>\n\n\n\n<p>[00:25:49] <strong>Cory Miller:</strong> I did for this stuff. I don&#8217;t know the original, how this is all done, but I was trying to match it and Sure. That won&#8217;t work for me. It is bold.&nbsp;</p>\n\n\n\n<p>[00:25:58] <strong>Corey Maass:</strong> Okay. [00:26:00] So by having Google fonts right now, so there are 1500, I think 1,508 Google fonts, and we, just so you know, right?</p>\n\n\n\n<p>So that we are not, because a plug-in, can&#8217;t call, dial out without permission and you can&#8217;t get Google font information without an API key. We can&#8217;t expect our users to go through all those steps, so you have to enable Google fonts within the plugin. But I set it up so that now I&#8217;m just bragging, but I&#8217;m proud of myself.</p>\n\n\n\n<p>I got us a Google a p i key Once a day we hit the Google Fonts API and get all the information. We store it on omg.co. I created a little API there, and so the plugin, anybody&#8217;s [00:27:00] plugin will hit omg img.co. That meaning our website to get all the font data, and then it&#8217;ll be, and then it&#8217;ll be cashed on in their own website too, but, so it was, The sort of clever way if I do say so myself, not, it&#8217;s not super tricky, but so we, so pretty quick, I was able to pretty quickly add Google font support the without the user having to do much, which is cool.</p>\n\n\n\n<p>However, right now all it does is create a dropdown that has 1,508 names of fonts For you, for now that you can, you would just go, sorry, select Vare around from that dropdown. But we&#8217;re gonna have to add some way to preview all of those fonts, anyway, I wanna make sure that Varela round bold works for you.</p>\n\n\n\n<p>You don&#8217;t do italics, you don&#8217;t rotate anything, but I had fun implementing that [00:28:00] stuff. And for you, it&#8217;s just a white background. Yeah. Oh, so I want to add, toggle the background overlay. So you can just disable it and just say, set a white background. And then that default. Color picker. I couldn&#8217;t, I had to type in the color.</p>\n\n\n\n<p>I couldn&#8217;t paste it in, which was a pain in the ass doesn&#8217;t support pasty. So I think we want a better color picker so that somebody could go copy an eight. Most people are gonna have a hex code color and so they&#8217;re gonna want to paste it in. Yep. Okay. So gimme 20 minutes. Just sit there quietly for 20 minutes and I will have this ready for you.</p>\n\n\n\n<p>Just kidding. Okay. I can&nbsp;</p>\n\n\n\n<p>[00:28:50] <strong>Cory Miller:</strong> be quiet. So then I went a little further into thinking through how we want those, and I came back to this. [00:29:00] Yep. Featured image stuff and going and let you know, just try to present some what we probably want on things. I did show, I did see. Yep. There, I did it. Let&#8217;s see if I can, your&nbsp;</p>\n\n\n\n<p>[00:29:15] <strong>Corey Maass:</strong> hair&#8217;s getting long.</p>\n\n\n\n<p>Huh? Your hair is getting long. In that picture,</p>\n\n\n\n<p>[00:29:21] <strong>Cory Miller:</strong> I showed you that thing. I just saw some from Twitter, but it was just a quote with a person&#8217;s picture on it. I was like, that&#8217;s cool. Cuz a lot of the podcast stuff we&#8217;re doing</p>\n\n\n\n<p>Like something like this where you have the person you&#8217;re interviewing with their little quote. I&#8217;ll keep working on those. Thinking about those, cuz those outputs were really good. Like we do so much audio, video stuff. And really been working with content journey to break those down more and more where you get clips and stuff like that, that then go out on social that are more valuable content on there [00:30:00] than just listen to 45&nbsp;</p>\n\n\n\n<p>[00:30:01] <strong>Corey Maass:</strong> minutes.</p>\n\n\n\n<p>But what you just said more valuable, we were talking earlier about like taglines and concepts and stuff. More valuable images.</p>\n\n\n\n<p>I really like that.</p>\n\n\n\n<p>Okay. Because we were talking like. Making you look more professional, which I bucked at cuz it&#8217;s it implies you don&#8217;t look professional now or as opposed to like we are. And also going back a handful of conversations that we had where it&#8217;s like crop Express was solving a problem.</p>\n\n\n\n<p>We were a wrench, you had a bolt. We could help tighten the bolt faster kind of thing. Whereas this, technically you can live without this, but we are making ev making your website better.&nbsp;</p>\n\n\n\n<p>[00:30:52] <strong>Cory Miller:</strong> It&#8217;s the polish. Yeah. It&#8217;s like you said, the last mile of Polish, yep. Done work doing [00:31:00] the 45 minute thing, doing the thing.</p>\n\n\n\n<p>And then this is that last mile that you said, I&#8217;d like that toughest mile of just polish. Yep. We&#8217;re making that really to display that. When I was thinking through the blog post stuff, I was like, that&#8217;s what I&#8217;d want is, when we shove out a podcast episode that&#8217;s not guy, oh, they did another thing.</p>\n\n\n\n<p>But if we have that quote from somebody in there that really resonates, then it&#8217;s I should go and look more. And what we&#8217;re trying to do on the content side is break those up better and better with transcripts, show notes and stuff like that.&nbsp;</p>\n\n\n\n<p>[00:31:36] <strong>Corey Maass:</strong> Yeah, initially, so I&#8217;ve added that. Basically it&#8217;s a content field, so it&#8217;s like you pull in the title of the website, you&#8217;d pull in whatever, right?</p>\n\n\n\n<p>But that, that the last option was custom text. And the label on the left would say quote, and then you&#8217;d say custom text. And you&#8217;d put in a quote and you&#8217;d have [00:32:00] this saved as a default. So you&#8217;ve got post sta, a white background and the post status logo and U R L in the bottom right print that, that&#8217;s quote number one.</p>\n\n\n\n<p>You&#8217;re now looking at that screen that has all of your projects and you&#8217;d say duplicate post or duplicate project. You change the name to quote number two. You&#8217;d go in paste in the second quote, and now you&#8217;ve got two of those images, same picture of the woman, but two different quotes. So you&#8217;d download one to post on socials on Tuesday and you&#8217;d download the second one to post on socials on Thursday.</p>\n\n\n\n<p>Gosh.&nbsp;</p>\n\n\n\n<p>[00:32:39] <strong>Cory Miller:</strong> So it&#8217;s been a bit a second on this blog post thing. So all those, I gather, you&#8217;re probably setting it up where it&#8217;s set in the front. When you do a post, there could be these options that you could fill in to create all those images. And right there I can do that. So I&#8217;m looking at [00:33:00] the post, oh, that quote there is the template plug and play.</p>\n\n\n\n<p>Like if you saw on this one screen, I was</p>\n\n\n\n<p>Why you get to Drift.</p>\n\n\n\n<p>I think that&#8217;s where we&#8217;re gonna get in. The valuable part is something that looks nice enough and allows me to share those things out.&nbsp;</p>\n\n\n\n<p>[00:33:25] <strong>Corey Maass:</strong> Yeah, and I think, like we&#8217;ve talked about, I. A number of those different templates of, or scenarios, an image that you generate that&#8217;s got a picture of a per, for your interview, you&#8217;ve got their picture on the left, and then you&#8217;ve got a quote and you can make five of those five different quotes, but it&#8217;s essentially the same image.</p>\n\n\n\n<p>And initially, Today, tomorrow, this week, like I&#8217;ll set up that template next week. You&#8217;re using it and you&#8217;re plugging it. You know you&#8217;re gonna have to cr [00:34:00] recreate that template every time. But a week from now, I&#8217;m gonna give you the option to duplicate a template and or save a template. For reuse, essentially.</p>\n\n\n\n<p>So then step two is gonna be okay. It&#8217;s I set it up once for each post and then and then I&#8217;ve gotta manually plug in those quotes and then step three, like basically to verify that, that we are using it this way and that these are loops that we want to close or processes that we wanna make faster.</p>\n\n\n\n<p>It&#8217;s like I&#8217;m picturing a. A screen where essentially you can quick generate, if you&#8217;ve got a bunch of these templates that like, opens up in the sidebar, your, you go and you look at your blog post and you highlight something, and then you select from a dropdown like, plug this, whatever text I&#8217;ve highlighted into this template.</p>\n\n\n\n<p>So it&#8217;s highlight a quote. Generate a quote, image [00:35:00] highlight, quote number two, generate quote, image, highlight bullet points you instead of the quote template, use a, use the bullet point template and you just go bang. Okay, all done. Go back to I M G O M G I M G project screen and there&#8217;s all of those different templates populated, already with your logo, but quote one, quote two, quote three, bullet 0.1, bullet 0.2, bullet 0.3.</p>\n\n\n\n<p>So I think it&#8217;d be&nbsp;</p>\n\n\n\n<p>[00:35:27] <strong>Cory Miller:</strong> okay, let me just make sure we&#8217;re on the same page. And I&#8217;m sorry if I missed this, but, so I was thinking post templates I&#8217;d want for most post ads content. I put down quote and summary slide. It&#8217;s probably the two big ones, just summary slide about what this content is about and then actionable cool quotes on that.</p>\n\n\n\n<p>So I started plugging up MGM G. I could create a template for the post things that would show, then [00:36:00] set there for its to global, and then I&#8217;m in post writing, post and go ready for the OG images, click. Oh, I want to do, I gotta have a summary slide that&#8217;s already in my template over you on the post. And then same thing with quote, I&#8217;d have that option too.</p>\n\n\n\n<p>Those templates would show up</p>\n\n\n\n<p>because right there, from a workflow standpoint, I&#8217;m thought about, I&#8217;ve done the work of thinking about some of the key things that would drive value on the post content summary slide, which is our featured image thought. And then the quote Thing and I&#8217;ll, maybe the bullet point would be the third for me is like we, we talked about these three things, which could be a variation of the summary slide.</p>\n\n\n\n<p>Sure. And if I did that, what that would do for me on my social channel is just talking this out as opposed to as, okay, I&#8217;ve already illuminated in a graphically appealing way what this long form post is about. Then I have those images for [00:37:00] those channels. LinkedIn, Twitter primarily for us at the appropriate sizes and stuff.</p>\n\n\n\n<p>I think we&#8217;re cooking. Yeah.&nbsp;</p>\n\n\n\n<p>[00:37:10] <strong>Corey Maass:</strong> Yep. Yeah, I like we&#8217;ve talked about the baseline is an OG image, ideally auto generated The moment you hit publish, you&#8217;ve based on a template being populated with the title of the post and then down the road with a screenshot of the post, and or the featured image.</p>\n\n\n\n<p>But once you&#8217;ve done kind of what is considered the word press basics, you&#8217;ve added categories, you&#8217;ve added a featured image, you&#8217;ve written your blog post, you&#8217;ve hit publish. Already when you share it, it looks damn good. There&#8217;s maybe a little bit of setup, but if you haven&#8217;t set up an OG image template or an OG image template for a, for that post, [00:38:00] then at least when somebody shares it, they get the sitewide business card, like you&#8217;re describing it.</p>\n\n\n\n<p>But with the next step. Every post that gets created automatically has a business card, but has the title of that post built in. And then step three, you could essentially recreate reuse that same one, let&#8217;s say make it a square for Instagram. And so again, you&#8217;re going, up and out with all these things and it&#8217;s just a matter of how you use it.</p>\n\n\n\n<p>So like at post status, your. You&#8217;re going, okay. Baseline is an OG image, but we also then want and that&#8217;s gonna cover your LinkedIn and Facebook. But you&#8217;re like, but we need a square for Instagram. Copy. Change it to, I didn&#8217;t show you that part. So it&#8217;s like that we select that channel.</p>\n\n\n\n<p>You saw that the second image I created was for Instagram. You can actually change that live. So you could take a rectangle image, you could replicate it, so [00:39:00] now you&#8217;ve got another one. But you could say, now make this square and it&#8217;ll just change. And things might move around on the screen.</p>\n\n\n\n<p>So you might want to go tweak, tweak some of those sliders. But if you&#8217;ve already done the work once, copy change screen size.&nbsp;</p>\n\n\n\n<p>[00:39:14] <strong>Cory Miller:</strong> Okay, let me talk this through. From a marketing customer Perspective. So what I&#8217;ve gathered, cuz I want us to capture this for the market, my marketing work, but I&#8217;m, I need to say that out loud to you.</p>\n\n\n\n<p>So what this has done for me as the content marketer at Post status is it&#8217;s in my workflow. It&#8217;s creating I&#8217;ve said my templates, I&#8217;ve thought these things, o n g has helped me. Do those, think through those these are the basic things you can do to add value to your post.</p>\n\n\n\n<p>So it&#8217;s in my workflow. It&#8217;s great cuz I&#8217;m going to my post. I&#8217;m adding new podcast, new blog posts, whatever. I&#8217;ve already done this initial workflow work to set my templates that are there for me when I need it. It looks nice, [00:40:00] like it doesn&#8217;t look like shit. It looks nice. And then the third is it, this is just direct speed.</p>\n\n\n\n<p>It illuminates the value of the post better. I&#8217;m pulling out the things to showcase what the post actually is, so I&#8217;m enticing people to do that. The fourth I didn&#8217;t add down here though, is making it super easy to go off and share. So for marketing wise, right there, we talk to content marketers first.</p>\n\n\n\n<p>They&#8217;re already doing this work. Yep. It&#8217;s in your workflow. It&#8217;s gonna look nice. It&#8217;s gonna share, showcase the value of the landing page better, and then it&#8217;s easy to share.&nbsp;</p>\n\n\n\n<p>[00:40:43] <strong>Corey Maass:</strong> So that last mile talking about the last mile is the hardest mile. Is also an aspect that I think. Mar like marketers and marketing agencies, it&#8217;s going to make sense to [00:41:00] them that we don&#8217;t close the loop on actually publishing to your average person.</p>\n\n\n\n<p>I th I anticipate this being a discussion. This we&#8217;re gonna have to have over and over again. Corey, with his little music blog. In a perfect world, We would generate images for each channel and then we&#8217;d click a button that would say, push these to these channels. Yep. But it&#8217;s, but that is so a big, messy step.</p>\n\n\n\n<p>Yeah. And there are tools that already do it. And again, from a marketer or an agency is already going to be using a radar, a buffer, a hoot suite to queue up and publish this content.&nbsp;</p>\n\n\n\n<p>[00:41:59] <strong>Cory Miller:</strong> Yeah.[00:42:00] So I was thinking though, like your Instagram, I go, huh, when am I gonna use that? But the Vida bars company, Lindsay has an investment in helps.</p>\n\n\n\n<p>She&#8217;s got shampoo and conditioner bars. She primarily uses Instagram, right? So she&#8217;s creating a post, wants something that then she can download and just upload back to, that publishing option. They&#8217;re great services that do all that. To me, it&#8217;s yeah, we&#8217;ve handed it on the thing, now go use your tools, your workflows.</p>\n\n\n\n<p>Yeah. You&#8217;re already in that workflow. But man I think that&#8217;s awesome. Okay. I&#8217;ve only, sorry, I&#8217;ve only got four more minutes, but here&#8217;s my question to you. What do you think needs to happen for it to be ready for&nbsp;</p>\n\n\n\n<p>[00:42:39] <strong>Corey Maass:</strong> production on Postex? Like I said, I need to clean up some of these bugs and I am now going to, so I&#8217;ve already created options that, that post status based on the template you gave me, I think we&#8217;re [00:43:00] pretty much covered.</p>\n\n\n\n<p>Like we&#8217;ve got Google font support. You can upload a logo, you can pull in a title, and I am going to clean it all up so that it works and you stop seeing errors when you first install it. But I&#8217;ll make sure that essentially the first template covers. The post status template and I need to replicate it.</p>\n\n\n\n<p>Like I said I&#8217;ve been hacking away at the Sitewide version, and so I&#8217;ve done this a couple of times. I just need to copy all my updates over to the post version. And then you&#8217;ll have all the same features on for sitewide images or for post specific images. And then we&#8217;re, and then you can at least start messing around with it.</p>\n\n\n\n<p>Okay.&nbsp;</p>\n\n\n\n<p>[00:43:43] <strong>Cory Miller:</strong> Do I need to do a little bit more work for you, like sh on the post templates, take a podcast or whatever content we have and think through. I&#8217;d want to quote from here. I&#8217;d want the summary slide for here. Do you want me to do a little bit of that work? [00:44:00] Like with live action stuff and Google Slides?</p>\n\n\n\n<p>[00:44:02] <strong>Corey Maass:</strong> Yes. Like the more work you do thinking through these templates, I don&#8217;t think we&#8217;re gonna I&#8217;m not gonna be able to deliver most of it tomorrow, but we can create one, yeah. Or we can create the one that&#8217;s similar to the Sitewide business card that just covers your basics. It&#8217;s got a logo, it&#8217;s got the title.</p>\n\n\n\n<p>So it, and then you like, cuz I wanna get this to you so that you&#8217;re like, you are pub, you publish and you&#8217;re like, Hey Corey, I&#8217;m trying to publish this for tomorrow. I need X, Y, Z. I&#8217;m like, okay, now we have a real world scenario, let me go add that. Here&#8217;s&nbsp;</p>\n\n\n\n<p>[00:44:41] <strong>Cory Miller:</strong> what I&#8217;m gonna do. Then I&#8217;m just gonna think about, I get one featured image template thing.</p>\n\n\n\n<p>Yeah. And to just showcase the value of the post. And and work on a couple of thoughts with, I&#8217;ll take one post and start doing it. Maybe take another [00:45:00] one and start doing it, and then deliver that and go, Hey, I think these are the basics for that one thing. And that gets me huge way into showcasing the value post and everything else.</p>\n\n\n\n<p>Like you said, it&#8217;s crazy. Yep. With that. So I&#8217;ll&nbsp;</p>\n\n\n\n<p>[00:45:14] <strong>Corey Maass:</strong> do that. And then like I said, I mean we&#8217;ve I&#8217;ve set up the technical side of serving, of selling this thing using e D on the website. Yeah. So we need to start thinking about a homepage, cuz we&#8217;re not gonna be selling tomorrow.</p>\n\n\n\n<p>But you and I both know that the first version is 10 versions, in a day, or, in, within a week before we actually let something stay online. Yeah. We wanted you sent over a design you like and then we&#8217;ll but we need some words to start putting on that page. So start thinking about that.</p>\n\n\n\n<p>Okay. So&nbsp;</p>\n\n\n\n<p>[00:45:58] <strong>Cory Miller:</strong> really for me it&#8217;s [00:46:00] homepage and the post template.</p>\n\n\n\n<p>Okay. Can do. Awesome. Love it dude.&nbsp;</p>\n\n\n\n<p>[00:46:08] <strong>Corey Maass:</strong> Thank you. We&#8217;re so close. We&#8217;re so close.&nbsp;</p>\n\n\n\n<p>[00:46:12] <strong>Cory Miller:</strong> Yeah. Too, and I love the way we&#8217;re doing it. It&#8217;s like we have a live action thing that we&#8217;re making it better and I&#8217;m putting on the hat of actual users cuz I am Right. Helping formally, I think that&#8217;s such a good way to do product that sometimes has been a mismatch for me, but I&#8217;ve got the live action, thank you.&nbsp;</p>\n\n\n\n<p>[00:46:31] <strong>Corey Maass:</strong> Great. We&#8217;ll talk soon.</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:\"Tue, 23 May 2023 20:14: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: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: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:67:\"Do The Woo Community: A Product Deep Dive with Wilson Favre-Delerue\";s:7:\"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=75190\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/sendcloud-shipping-automation/\";s: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:399:\"<p>In this episode we take a deeper look at Sendcloud with Wilson and what shipping automation means to a developer or freelancer.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/sendcloud-shipping-automation/\">A Product Deep Dive with Wilson Favre-Delerue</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, 23 May 2023 13:38: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: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: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:86:\"WPTavern: Gutenberg 15.8 Adds Pages Menu to Site Editor, Revisions UI to Global Styles\";s:7:\"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=145332\";s:7:\"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://wptavern.com/gutenberg-15-8-adds-pages-menu-to-site-editor-revisions-ui-to-global-styles\";s: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:2667:\"<p><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">Gutenberg 15.8</a> was released with some exciting features that were included in the tentative <a href=\"https://wptavern.com/wordpress-6-3-development-kicks-off-to-conclude-gutenberg-phase-2\">WordPress 6.3 roadmap</a>. Users are getting closer to a more unified content editing experience with the addition of the Pages menu to the Site Editor. Clicking on Pages will load the ten most recently updated pages with a link to &#8220;Manage All Pages&#8221; at the bottom of the list. Users can quickly jump into editing content by selecting a page.</p>\n\n\n\n<img />\n\n\n\n<p>The interface also includes a little reminder about the nature of pages in WordPress: &#8220;<em>Pages are static and are not listed by date. Pages do not use tags or categories.</em>&#8221; It will be interesting to see how page editing in the Site Editor is received, whether it is too confusing for users to understand what they are editing, or whether the baseline expectation is that content can be edited anywhere. </p>\n\n\n\n<p>Revisions for design changes have landed in 15.8 with <a href=\"https://github.com/WordPress/gutenberg/pull/50089\">a basic UI inside the Global Styles panel</a>. It shows a timeline of saved changes along with who made the change, so users can easily revert back to previous design changes. This creates an extra cushion or safety net for those who are designing their own sites and should provide a greater level of user confidence when making design changes.</p>\n\n\n\n<img />\n\n\n\n<p>Version 15.8 also introduces <a href=\"https://github.com/WordPress/gutenberg/pull/50030\">theme previews for block themes</a>, a feature that has been sorely missing for early adopters of block themes. This is made possible by a new <code>theme_preview</code> parameter, which allows the user to see what the site would like if a different theme was active.</p>\n\n\n\n<p>A few other noticeable changes in this release include the following: </p>\n\n\n\n<ul>\n<li>Post Featured Image: New design for Replace and Remove buttons. (<a href=\"https://github.com/WordPress/gutenberg/pull/50269\">50269</a>)</li>\n\n\n\n<li>More intuitive Details block with summary and innerBlocks content. (<a href=\"https://github.com/WordPress/gutenberg/pull/49808\">49808</a>)</li>\n\n\n\n<li>List View: Allow dragging to all levels of the block hierarchy. (<a href=\"https://github.com/WordPress/gutenberg/pull/49742\">49742</a>)</li>\n</ul>\n\n\n\n<p>Check out the full <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">changelog</a> for all the details on enhancements and bug fixes in 15.8.</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, 23 May 2023 01:53:59 +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: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:69:\"WPTavern: Shufflehound Releases Free Lemmony Child Theme for Agencies\";s:7:\"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=145111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/shufflehound-releases-free-lemmony-child-theme-for-agencies\";s: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:3032:\"<p><a href=\"https://shufflehound.com/\">Shufflehound</a> made a big splash in March when it <a href=\"https://wptavern.com/lemmony-a-free-wordpress-block-theme-with-30-patterns\">released Lemmony</a>, a free WordPress block theme with more than 30 patterns. This was the company&#8217;s first block theme on WordPress.org and it is already active on more than 1,000 websites. Building on the success of this theme, Shufflehound has created a child theme for agencies.</p>\n\n\n\n<p>Lemmony Agency bears a strong resemblance to its parent theme but with more agency-specific patterns. This theme ships with 25 new custom block patterns, on top of the ones already included in Lemmony, for a total of more than 50 patterns.</p>\n\n\n\n<img />\n\n\n\n<p>The patterns unique to this theme suit agencies but would also work well for non-profits, advocacy, portfolios, or businesses of any kind. These include a hero with services, accordions for things like FAQ, counters, more pricing tables, services with icons or images, a blockified sidebar, testimonials, and more.</p>\n\n\n\n<img />\n\n\n\n<p>The theme&#8217;s creators have done an excellent job in organizing all the patterns available to users. Inside the pattern explorer/inserter, they have been separated into different panels for the patterns specific to the Lemmony Agency theme, the Lemmony patterns, and the Lemmony full-page patterns. This makes it easier to build pages, since users won&#8217;t have to hunt through all the patterns lumped together.</p>\n\n\n\n<img />\n\n\n\n<p>The Lemmony Companion plugin, recommended when users install the theme, adds a handful of custom blocks that some of the patterns rely on to work. It includes blocks for a counter, icon, post featured image caption, typing text, hero auto-slider, and accordion. </p>\n\n\n\n<img />\n\n\n\n<p>This might be the best way to ensure these features are styled exactly to match the theme and give users more creative control inside these particular blocks. Sometimes using third-party plugins to add sliders or icons can look like it&#8217;s bolted onto the design in an unsightly way. A companion plugin designated specifically for this theme makes sense in this instance.</p>\n\n\n\n<p>Shufflehound made an interesting choice creating Lemmony Agency as a child theme of what is already a very flexible multi-purpose theme. This certainly could have been shipped as full-page pattern but it would have also greatly expanded the patterns packaged with the parent theme. In these early days of block theming, it&#8217;s not yet clear what users might consider &#8220;pattern bloat&#8221; or too many patterns, especially since they can easily be categorized under various panels inside the explorer. </p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/lemmony-agency/\">Lemmony Agency</a> is a solid option for building websites that need to showcase their services, display pricing, or simply maintain an informational web presence. It&#8217;s available for free from WordPress.org and will auto-install the parent theme at the same time.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2023 20:35: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: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:93:\"WordCamp Central: SiteGround joins the WordPress global community sponsorship program in 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3165350\";s:7:\"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:118:\"https://central.wordcamp.org/news/2023/05/siteground-joins-the-wordpress-global-community-sponsorship-program-in-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2491:\"<p>Please join us in welcoming <a href=\"https://siteground.com/wordpress-hosting.htm\">SiteGround</a> to the&nbsp;<a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">2023 WordPress global community sponsorship program</a>! SiteGround’s pledge to sponsor all official WordPress community events (WordCamps, Meetups, and more) all around the world provides support and stability to our hardworking crew of volunteer event organizers. Thanks for everything, SiteGround!</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2023/05/siteground-logo-black-transparent-400x81-2.png\"><img /></a></div>\n\n\n<p><a href=\"https://siteground.com/wordpress-hosting.htm\">SiteGround</a>&#8216;s hosting services are crafted to make managing websites easy, whether you&#8217;re building a site for yourself, your small business, or your clients.</p>\n\n\n\n<p>We host over 2.8 Million domain names on a powerful Google Cloud Platform infrastructure, optimized with an array of in-house tools for seamless, faster and more secure WordPress performance:</p>\n\n\n\n<p></p>\n\n\n\n<ul>\n<li>Fast: Choose from multiple data centers across USA, Europe, Asia, and Australia, complemented by over 170 CDN edge network locations with our free CDN to improve website performance. Powerful built-in Caching, custom PHP setup, and SiteGround Optimizer plugin for WordPress to make your sites up to 5 times faster right out of the box.</li>\n\n\n\n<li>Secure: Advanced security on server, website, and application level with a free SSL, advanced built-in Web Application Firewall, SiteGround Security plugin, in-house antispam protection and AI-powered anti-bot system to keep your websites safe.</li>\n\n\n\n<li>Easy to manage: Build or transfer WordPress projects in a few clicks with our WordPress Starter and Automatic website and Email Migrators. Manage multiple sites in one place hassle-free, get automatic core and plugin updates, add team collaborators, ship sites to clients, manage white-label hosting, and many more handy features to keep all the control, but spare you the hassle of website management.</li>\n</ul>\n\n\n\n<p>Our long-term expertise in helping WordPress users succeed online extends into our award-winning <a href=\"https://www.siteground.com/wordpress-plugins/siteground-optimizer\">SiteGround Optimizer</a> and <a href=\"https://www.siteground.com/wordpress-plugins/siteground-security\">SiteGround Security</a>; plugins, free to download and install on any hosting platform.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2023 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Isotta\";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:84:\"WordPress.org blog: WP Briefing: Episode 56: What to Know About 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:53:\"https://wordpress.org/news/?post_type=podcast&p=14968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-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:16989:\"<p>Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.</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/richtabor/\">Rich Tabor</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</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/bjmcsherry/\">Brett McSherry</a> and <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://developer.wordpress.org/playground/\">WordPress Playground</a> and the <a href=\"https://github.com/WordPress/wordpress-playground\">Playground Github repo</a></li>\n\n\n\n<li><a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a> </li>\n\n\n\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day,</a> and <a href=\"https://europe.wordcamp.org/2023/presenting-wp-connect/\">WP Connect</a></li>\n\n\n\n<li><a href=\"https://wordpress.slack.com/archives/C04EWKGDJ0K\">#meta-playground</a> in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a></li>\n\n\n\n<li><a href=\"https://chat.openai.com/\">ChatGPT</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.cloudfest.com/\">CloudFest</a> and <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a></li>\n\n\n\n<li>The <a href=\"https://wordpress.org/news/feed/blank\">Kim Parsell Memorial Scholarship</a> for travel to WordCamp US 2023</li>\n\n\n\n<li>Find your closest location for a <a href=\"https://wp20.wordpress.net/\">WordPress 20th Anniversary celebration</a></li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">Changes to the WCUS event for 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14968\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]</strong></p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>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. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>(Intro continues)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]</strong></p>\n\n\n\n<p>Today we&#8217;re gonna spend a little time talking about WP Playground. This is a project that debuted at State of the Word in December 2022, but it was demoed for me about a month prior in November.</p>\n\n\n\n<p>I was, and remain, absolutely floored by the potential future applications, as well as the innovative thinking behind it. So I&#8217;ve invited a couple of excellent WordPress futurists to the show today so that we can listen in on their conversation.</p>\n\n\n\n<p>Welcome guys.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:07]</strong></p>\n\n\n\n<p>Hey everyone, I&#8217;m Rich Tabor, and I&#8217;m here today with Adam Zielinski to talk about WordPress Playground. So for those of you who don&#8217;t know what WordPress Playground is, can you tell us a little bit more about it, Adam?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:18]</strong></p>\n\n\n\n<p>Absolutely. WordPress Playground is WordPress that works in your browser like there&#8217;s no server with PHP or database like there&#8217;s just your browser and JavaScript, and you can run it in so many more places that we’ll all get to. For example, I just came back from WordCamp Gliwice, where on a Contributor Day, a couple of developers got set up with WordPress in just a couple of minutes, whereas normally, it can take hours to do that.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:44]</strong></p>\n\n\n\n<p>Yeah, that&#8217;s, that&#8217;s pretty impressive. Do you think that, particularly for WordCamps and other demo-type areas, this would be something that&#8217;s very useful? Or what do you think would be the other problems that could be solved with WordPress Playground?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:55]</strong></p>\n\n\n\n<p>Playground solves one primary problem, and that is WordPress is pretty difficult to get started with. I&#8217;m not even talking about creating your website, but let&#8217;s say, someone told you there&#8217;s this WordPress thing that you should try. Well, you Google for it, and you find installation instructions, and there&#8217;s like three hours of work for you there.</p>\n\n\n\n<p>So then maybe you&#8217;ll find a hosting company, and you have to pay some money. So with WordPress Playground, you can actually try it for free because there&#8217;s no cost to run it. It just runs on your device. If you&#8217;re a developer, and you want to start learning WordPress, normally you have to go through quite an extensive setup process, and there are some tools to make it easier, but maybe there&#8217;s still friction like you have to even own a computer, like a PC device or a Mac. Playground can run on your phone, and it can power interactive tutorials that you can use and just start learning there and there with zero setup.</p>\n\n\n\n<p>Like if you work on a product team and someone asks you to test a code change, with Playground you can just click a link and test it with no infrastructure behind it. And if you&#8217;re a company creating a plugin, you can just show your plugin in a live demo to people. And this isn&#8217;t something many plugins are doing because it&#8217;s quite hard to get a live demo set up.</p>\n\n\n\n<p><strong>[Rich Tabor 00:03:12]</strong></p>\n\n\n\n<p>Ah, that&#8217;s pretty impressive. So, you know, amongst like tutorials, code changes for developer environments, the mobile application running, do you think that, since there&#8217;s such a wide brevity of ideas that WordPress Playground can kind of plug into, would this be more of a developer tool?</p>\n\n\n\n<p>Is that right? Or is Playground more of a like a click and play-type application that can run anywhere and demo anything?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:03:36]</strong></p>\n\n\n\n<p>I&#8217;d say it&#8217;s both, but it&#8217;s more transparent for the users. So there are a whole lot of things you can do with Playground as a developer, as I just mentioned. But who are you doing these things for? Well, some of them are for the users, as in live demos, or there&#8217;s a WordCamp Europe coming, and I know some people are doing workshops there. They are going to use Playground to get everyone set up. So now that&#8217;s, well, maybe a workshop that teaches you how to build a theme, for example, right? Now you can just get started without any setup process. So there&#8217;s both, it&#8217;s very useful for development teams, and it&#8217;s very useful for them to build stuff for the final users.</p>\n\n\n\n<p><strong>[Rich Tabor 00:04:21]</strong></p>\n\n\n\n<p>That&#8217;s great. I know you, and I have probably both been in the same scenario at WordCamps when you&#8217;re trying to get dev environments set up, and it takes, you know, the better half of the workshop to get to step one. So this is really gonna be interesting to see it, especially at WordCamp Europe, and to see it getting into action.</p>\n\n\n\n<p>Are you planning on going to WordCamp Europe this year?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:04:39]</strong></p>\n\n\n\n<p>Absolutely, I will have a table at Contributor Day, a WordPress Playground table. So yeah, everyone&#8217;s invited to come over. I&#8217;ll show you a lot of cool stuff. And then at WP Connect on Saturday at 10:00 AM, there will be a WordPress Playground session where you&#8217;ll be able to learn more and see some cool demos.</p>\n\n\n\n<p>And this will be a conversational format, so we&#8217;ll just have a nice chat.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:01]</strong></p>\n\n\n\n<p>Super cool. So how else can people find out a little bit more info about Playground and perhaps even get involved and contribute to the project?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:05:08]</strong></p>\n\n\n\n<p>There&#8217;s a developer.WordPress.org/playground website. There&#8217;s a link in a show notes where you&#8217;ll be able, like this is the perfect entry point to the entire rabbit hole of WordPress Playground.</p>\n\n\n\n<p>There&#8217;s a quite a few projects under the WordPress Playground umbrella, and they all live in a single GitHub repository where you can just find any issue that interests if you want to contribute and just start contributing. Also, there&#8217;s a Slack channel in WordPress org space called #meta-playground, and I highly encourage everyone interested in coming over to say hi.</p>\n\n\n\n<p>And probably one of the best places to ask questions and get acquainted with the community.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:54]</strong></p>\n\n\n\n<p>Oh, that&#8217;s great; I&#8217;m very intrigued about the project overall. I think that there&#8217;s an immense amount of potential, for WordPress Playground. Just last question here, like, where do you see the future of this project going? What is the most interesting application that hasn&#8217;t been done yet, or the things that are really gonna be the next level in unlocking Playground for everyone?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:06:12]</strong></p>\n\n\n\n<p>There&#8217;s quite a few. Imagine being able to go to WordPress.org and have a WordPress demo right then and there without having to download anything. Then you customize it, and you have a button to host your website anywhere or just to download it.</p>\n\n\n\n<p>Imagine having a live preview for all the themes and plugins in the directory and even in WordPress core, but these are sooner than later. Maybe like, let&#8217;s talk more grandiose, shall we? So there&#8217;s this term, 1 billion new users coming online in the next, like in the nearest future, and plenty of them doesn&#8217;t even own a desktop device. Maybe they have a mobile phone, maybe they have a tablet, maybe we&#8217;re talking about a young, prospective developer somewhere. And currently, if you don&#8217;t own a desktop device, you cannot contribute to the WordPress plugin ecosystem at all.</p>\n\n\n\n<p>Like, we&#8217;re seeing more and more of creating themes with no code, which is really exciting. But you cannot build the plugin, really. Well, with WordPress Playground. Suddenly you can do development on a mobile device. So development tools and code editors and just the entire suite of things we use as the developers on our desktop of devices like this may come online and be available in your browser.</p>\n\n\n\n<p>And if you&#8217;re on a train and you just have a phone with you, but you still want to learn, how to build a plugin, well, you&#8217;ll be able to do that. Furthermore, there&#8217;s a lot of exciting opportunities with ChatGPT, as in, well, here&#8217;s a WordPress running entirely on your device. So maybe if that&#8217;s connected to ChatGPT, you&#8217;ll be able to say, well, I like fish, or like, I want two columns and a photo of a racing car on top of it.</p>\n\n\n\n<p>And because ChatGPT can output HTML, we connect the two, and suddenly, you can build a website entirely in your browser using natural language.</p>\n\n\n\n<p><strong>[Rich Tabor 00:08:20]</strong></p>\n\n\n\n<p>Man, that&#8217;s, that&#8217;s really interesting. It really does unlock the next, potentially the next like, wave of innovation in the WordPress experience, especially removing all the complications of getting set up and actually seeing what&#8217;s there. I think that it really could, be huge for users every day.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:08:38]</strong></p>\n\n\n\n<p>Oh, here&#8217;s one more. So, edge computing is big lately, and it&#8217;s going to be bigger in the future. WordPress Playground runs on this new technology called Web Assembly, and it just happened so that a bunch of edge computing providers allows you to run web assembly on their gear. So imagine having WordPress running entirely in edge infrastructure with no centralized server.</p>\n\n\n\n<p>Truly decentralized WordPress. It could be big for a well cost of operating, but also for speed, but also even further down in the future. Imagine downloading the actual, you know, even WordPress around time to your device and having the entire website on your phone. So then you know, you&#8217;re on a train, you enter a tunnel, but you can still browse that WooCommerce store and add things to your cart even though there is no range at all.</p>\n\n\n\n<p><strong>[Rich Tabor 00:09:32]</strong></p>\n\n\n\n<p>Wow, that&#8217;s, that&#8217;s pretty crazy. How far out there do you think something like that is?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:09:37]</strong></p>\n\n\n\n<p>It&#8217;s hard to tell. I mean, technically, it is possible. There are a lot of challenges with regard to privacy, right? And data security for the edge computing case specifically. As for the development tools, there was a Cloud Fest hackathon earlier this year where I was with Daniel Bachhuber, also from Automattic, and we led this exciting project that brought the WordPress development environment into the browser using a couple of editors that are out there, and this is too much of an MVP for actual production use yet, but we got it working, and we build an actual plugin on a phone without internet access.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:19]</strong></p>\n\n\n\n<p>Wow. And that was just a hackathon, just hacking at it to see what you can get.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:23]</strong></p>\n\n\n\n<p>Yeah, it was two and a half days.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:25]</strong></p>\n\n\n\n<p>Oh, that&#8217;s awesome. That&#8217;s really cool, man. Well, this has been quite a pleasure. Thanks, Adam, for chatting all about WordPress Playground. Folks, just be sure to check out developer.WordPress.org/playground to explore, experiment, and play with WordPress Playground.</p>\n\n\n\n<p>This has been awesome, Adam.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:43]</strong></p>\n\n\n\n<p>Thank you so much for having me, Rich.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:45]</strong></p>\n\n\n\n<p>What a remarkable new way of working with and experiencing WordPress. I would love to be able to find ways across the project and ecosystem to help folks see what they&#8217;re getting into before they get into it, but also, who knows what the future holds for that project. Keep an eye on it.</p>\n\n\n\n<p>(Musical interlude)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:10]</strong></p>\n\n\n\n<p>That brings us to our small list of big things happening right now in the WordPress project. The first one is that the Kim Parel Memorial Scholarship for WordCamp US 2023 is open, and applications for it are the WordPress Foundation will once again be offering that scholarship for Travel to WordCamp US.</p>\n\n\n\n<p>It is for specifically for women in technology, women in the WordPress space. I&#8217;ll include a link to that in the show notes.</p>\n\n\n\n<p>The second thing is WordPress&#8217; 20th anniversary is still coming, as we heard in the last podcast.</p>\n\n\n\n<p>So we have reached over 100 events that are scheduled on or around May 27th, which is WordPress’ launch date. There is still time to find your closest location and attend one of those events. And probably, there&#8217;s also time to pull together an event of your own. Head on over to wp20.WordPress.net if you would like to see events in your area.</p>\n\n\n\n<p>And the third thing is WordCamp US 2023. I realize WordCamp Europe comes before that, but the programming team actually has a really interesting thing that they&#8217;re doing this year. They have some changes to the way that they are organizing the event and finding speakers for the event. But as always, they are working very hard to make sure it is an attendee-focused event.</p>\n\n\n\n<p>I&#8217;m gonna include a link or two to some announcements that are really worthwhile there. Head on over to the podcast page to see those. And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Thanks again to my guests, and I&#8217;ll see y&#8217;all in a couple of weeks.&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:98:\"Gutenberg Times: Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments\";s:7:\"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=24228\";s:7:\"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:90:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\";s: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:64666:\"<p>Fabian Kägy and Birgit Pauli-Haack discuss the new enhancements in Gutenberg plugin releases 15.7 and 15.8 as well as the Experiments available in the plugin.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/#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\"></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Fabian Kägy </h2>\n\n\n\n<ul>\n<li>Twitter: <a href=\"https://twitter.com/fabiankaegy\">@fabianjaegy</a></li>\n\n\n\n<li>WordPress Profile: <a href=\"https://profiles.wordpress.org/fabiankaegy/\">@fabiankaegy</a></li>\n\n\n\n<li>Personal website: <a href=\"https://fabian-kaegy.com/\">fabian-kaegy.com</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-59-extensibility-of-the-block-editor/\">Gutenberg Changelog #59 – Gutenberg 12.4, Developer Hours, Extensibility of the Block Editor and more</a></li>\n\n\n\n<li><a href=\"https://gutenberg.10up.com/\">10up Gutenberg Best Practices!</a></li>\n\n\n\n<li><a href=\"https://www.npmjs.com/package/@10up/block-components\">10up Block Components</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s new for developers? (May 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/04/how-webpack-and-wordpress-packages-interact/\">How webpack and WordPress packages interact</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/04/per-block-css-with-theme-json/\">Per-block CSS with theme.json</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/04/fse-program-build-a-block-theme-summary/\">FSE Program Build a Block Theme Summary</a><a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\">FSE Program Front Page Fun Summary</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-themes-team-releases-stacks-a-community-theme-for-building-slide-decks\">WordPress Themes Team Releases Stacks: A Community Theme for Building Slide Decks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.2.1 + 6.2.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-6-2-2-restores-shortcode-support-in-block-templates-fixes-security-issue\">WordPress 6.2.2 Restores Shortcode Support in Block Templates, Fixes Security Issue</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 15.7</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\">What’s new in Gutenberg 15.7? (03 May)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-15-7-adds-site-logo-upload-to-inspector-controls\">Gutenberg 15.7 Adds Site Logo Upload to Inspector Controls</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 15.8</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Experiments in Gutenberg</h2>\n\n\n\n<table><tbody><tr><th>Zoomed out view</th><td>&nbsp;Test a new zoomed out view on the site editor (Warning: The new feature is not ready. You may experience UX issues that are being addressed) (<a href=\"https://github.com/WordPress/gutenberg/pull/41156\">#41156</a>)</td></tr><tr><th>Color randomizer</th><td>&nbsp;Test the Global Styles color randomizer; a utility that lets you mix the current color palette pseudo-randomly. (<a href=\"https://github.com/WordPress/gutenberg/pull/40988\">#40988</a>)</td></tr><tr><th>Command center</th><td>Test the command center; Open it using cmd + k in the site or post editors. (<a href=\"https://github.com/WordPress/gutenberg/pull/50128\">#50128</a>)</td></tr><tr><th>Grid variation for Group block</th><td>&nbsp;Test the Grid layout type as a new variation of Group block. (<a href=\"https://github.com/WordPress/gutenberg/pull/49018\">#49018</a>)</td></tr><tr><th>Details block</th><td>&nbsp;Test the Details block (<a href=\"https://github.com/WordPress/gutenberg/pull/49808\">#49808</a>)</td></tr><tr><th>Block Theme Previews</th><td>&nbsp;Enable Block Theme Previews (<a href=\"https://github.com/WordPress/gutenberg/pull/50030\">#50030</a>)</td></tr><tr><th>Navigation block</th><td>&nbsp;Test the Navigation block using the Interactivity API (<a href=\"https://github.com/WordPress/gutenberg/pull/50041\">#50041</a>)</td></tr></tbody></table>\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\">Transcript </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello and welcome to our 83rd episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about WordPress Point Release, 6.2.1, Gutenberg 15.8, and of course the previous one, Gutenberg 15.7 as well, and some of the experiments featured hiding in the Gutenberg plugin. I&#8217;m your host, Birgit Pauli-Haack, curator of the Gutenberg Times and WordPress developer advocate, and a full-time core contributor for the WordPress Open Source project.&nbsp;</p>\n\n\n\n<p>I&#8217;m so happy to have, again, Fabian Kägy back on the show. It&#8217;s been a while since we talked and so much happened. We just found out, it was the episode 59 and it was in February 2022, well, it&#8217;s a whole world happened in between. So for our new listeners, Fabian Kägy is the Associate Director of Editorial Engineering at 10up and a core contributor to the Gutenberg project since 2017, I think. So welcome back on the show, Fabian. How are you today?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Thank you so much for having me. I&#8217;m excited to be back on this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m glad you&#8217;re here. So I have to ask, editorial engineering, what does that entail at the agency 10up?</p>\n\n\n\n<p><em>Fabian Kägy</em>: So that is a special, in quotation marks, &#8220;made up role&#8221;, where I started down the path of a front end engineer and over time became more and more passionate about all things editorial experience. So that is now a special role where I get to focus part of my time on actually coming up with best practices and solutions for working with a block editor and helping the entire team level up and carved out my niche.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s awesome, especially because in view of the next phase of Gutenberg where it is actually all about collaboration on an editorial team, so making that a smooth experience is definitely something we all will be working on for when 6.3 come out, I think. Your input will be invaluable for your clients, as well as for the team, I think.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yes. I&#8217;m very, very excited about all the things that are lined up for all of us to work on and to explore, and it&#8217;ll be fun.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So with the developer blog, I&#8217;m part of the editorial team that does reviews and works with writers. Once in a while, we start out with Google Docs and have everybody comment on it. Some writers say, &#8220;Well, I&#8217;m waiting for that moment where I don&#8217;t have to use Google Docs anymore to collaborate with people on a post and not have to copy/paste it over.&#8221; So we are very much looking forward to that collaboration and we will be eating the Gutenberg dog food, so to speak, on the developer blog.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>Speaking of the developer blog, Justin Tadlock just published the What&#8217;s New for Developers in May 2023 on the developer blog, and that&#8217;s a series of roundup posts that were started in February, where we look at all the publications that come out throughout the month, what&#8217;s new in core, the Gutenberg plugin, the keeping up with Gutenberg index page, and so much more, and just pick those things that are relevant for developers not to teach them how to use them, but more like, &#8220;Watch out, this is coming,&#8221; and prepare them for an X release pretty much.&nbsp;</p>\n\n\n\n<p>The main one has quite a few items in there that are highlighted there. One is the Block Selectors API, which has definitely the markup of a larger tutorial, but it got quite a few developers excited about CSS and their blocks and being more in control of it. Another one as we will also talk about it is the first community theme and all things. So it&#8217;s pretty much a roundup of a lot of things that are interesting for extenders like plugins, developers, theme developers, and also agency developers.</p>\n\n\n\n<p>So we share the latest blog post link in the show notes, but if you haven&#8217;t looked at those yet, and if you&#8217;re a developer, subscribe to the feed of the developer blog or just for the roundup post so you get a heads up on many things.</p>\n\n\n\n<p><em>Fabian Kägy</em>: I would highly encourage everybody to take a look at those because they&#8217;re super valuable, just quick shares of what&#8217;s going on, what are the things to look out for, and even if you&#8217;re not developing for the actual experimental Gutenberg plugin, it is something. It makes it so much easier when the next big WordPress update comes around to know what&#8217;s in the pipeline, what are the things that are being talked about and already have some grasp of just what&#8217;s coming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much. Justin does a great job in putting it all together and also shares some resources that are available on Learn WordPress. Then there were two new posts since we had the last show. There was one on how Webpack and WordPress packages interact by Ryan Welcher. That really gets you a little bit more theory around how WordPress and Webpack work together. For those that are not like me, I trust the things &#8230; I trust in God. I trust in things that if I put an NPM, run something, that it&#8217;s all going to work out, but some people want to really dive into Webpack some more and this gives them a great introduction to that. How are you doing with Webpack? Are you manipulating Webpack for your own development?</p>\n\n\n\n<p><em>Fabian Kägy</em>: So I used to do it a lot, especially in the early days of the WordPress Scripts package. There were so many things that were not yet a part of it, and I was very actively adding hacky solutions to add post CSS and all of those SaaS things to WordPress Scripts. That was my introduction to actually working with Webpack. Now, WordPress Scripts takes care of most of our needs or for some of the things, we have a similar tool at 10up that is a helper so we don&#8217;t have to deal with custom Webpack configurations.</p>\n\n\n\n<p>I read through that post from Ryan about how that interacts, and it&#8217;s a really solid deep dive. If you want to understand the areas, the inner workings of how some of these Webpack plugins interact, which you don&#8217;t need to, but if you want to, that is very, very useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Then the other blog post was the per-block CSS with theme.json. The per-block CSS came out out of feedback from the community that custom CSS were not available anymore to put in custom CMS for the block themes and for sites, and it was introduced with 6.2, but it also needs some additional handle. Justin wrote a blog post about it, how best to think about per-block CSS with theme.json without getting too deep into the weeds and how that&#8217;s offered to the user. So definitely read up about it.&nbsp;</p>\n\n\n\n<p>For the FSE program, Anne published two summary posts and you make your part of coffee first because they&#8217;re both very long but also very detailed from the latest testing calls. One was Build Your Block Theme with the great block theme plugin and the other one was the testing call 21 for the FSE program for the front page fund summary. There will be a new testing call coming out of the FSE program.</p>\n\n\n\n<p>So if you are into block themes and users use them and all that, it&#8217;s definitely a good overview on what are the pain points, what are the team working on because Anne is very, very thorough in adding to all pain points or discussion points, also the PRs or the issue that is on GitHub about that particular topic. So you can chime in with your opinions, with your experiences, and with your testing, and it would really help if you chime in and be encouraged to actually be part of the testing project. That&#8217;s it.&nbsp;</p>\n\n\n\n<p>Of course, we share all the links in the show notes for this episode.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Community Contributions</strong></h3>\n\n\n\n<p>Another great announcement and community contribution is the first theme coming out of the community theme project where community members and team members are working together on creating block themes and the first one is called Stacks. It&#8217;s a theme with which you can build slide decks. It&#8217;s a very interesting approach to a website that is more a slide deck rather than have navigation from page to page to page. It&#8217;s more like a guided tool that you can use it or you can use it for your next presentation, but you don&#8217;t have to use a third-party tool for that if you want to spin up a website and just use it for your presentation.&nbsp;</p>\n\n\n\n<p>It&#8217;s quite interesting to see how that comes together. The code is certainly available on GitHub and we share both the announcement post, as well as the write up by Sarah Gooding on the WP Tavern for you.</p>\n\n\n\n<p><em>Fabian Kägy</em>: These explorations and these themes and plugins that allow you to build your slide deck in the block editor, I&#8217;m always amazed when I see that. I think a couple of years ago, Ella was maybe one of the first ones who did talk at a React conference and blew my mind in the end when they revealed, &#8220;Hey, and all of this was created in the block editor and these slides are powered by it.&#8221; I think Nick Diego also did it at WordCamp US or at WordCamp and it&#8217;s always pretty cool to see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re right. Nick Diego did it at WordCamp US for his talk, Build A Block in 15 minutes, and he built actually that slide back there as well. It&#8217;s very interesting how this can be used on your own website. Yes, Ella had a slide. It was actually a block that she added. I think it was the same for Nick Diego and now we have a theme for it. So it&#8217;s really cool.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released</strong></h3>\n\n\n\n<p>All right. That brings us into what&#8217;s released and, of course, let&#8217;s start with the minor release for WordPress, the 6.2.1 Point Release that just came out this week and there were a few hiccups there. Do you want to talk about this and what&#8217;s happening there?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Sure. So 6.2.1 was released, I believe it was at some point early this week. One thing, there was a security issue that the security team took care of and made sure that that gets resolved as quickly as possible, but that security issue essentially resulted in short codes no longer working in block templates. So in a block-based theme, if you have a short code inside a block template, that will no longer actually get converted to the dynamic data. That has caused some issues for folks, especially around auto updates because it&#8217;s just a minor patch release, but it is breaking some existing sites, which as always, it is a very difficult choice to make and a very unfortunate thing when that has to happen because of security thing.&nbsp;</p>\n\n\n\n<p>There is an open issue in track where a lot of this is getting discussed right now, and it was discussed in the core chat yesterday, where essentially, it is very unfortunate when something like that has to happen. From my perspective, I think the team, if there is a security issue, that is the only thing that can be done. The only thing that I think we as a community can try to be a little better at is communicating those types of things ahead so folks are more aware of that, &#8220;Hey, we needed to make a difficult decision here. Beware, you should make this update, but here are some things that you can do instead to help your site still be up there,&#8221; because the communication around the issue could have been a little better.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I don&#8217;t think there&#8217;s no maybe about it, but it was a little obscure in the change log and it wasn&#8217;t saying, &#8220;Okay. It&#8217;s going to break sites,&#8221; but I think it&#8217;s really hard to also suggest a solution right now. So Jean Baptist Audras was one of the release leads together with George Mamadoshvilli, and he wrote in the core dev chat on Wednesday night, &#8220;The release itself went pretty well. Thanks everyone for your patience. However, as you may know, one security fix led to the important issues with the short codes used in templates, but it was not templates per se, but block templates in block themes. So the issue is currently actively discussed in the security editor team and some hypotheses have been made to sort this out in a quick followup release. No schedule is available right now because the discussions haven&#8217;t been finished yet, but it will depend on the followup patch currently discussed by the editor team.&#8221;</p>\n\n\n\n<p>So to just point out, and Paul Byron had actually &#8230; All the solutions on how to deal with it right now in the emergency situation when you see dozens or even hundreds of page breaks, one is to roll back to 6.2 with a core rollback plugin, use the short code, and put them in template parts. That seems to be working in the block themes that you put the short code in a template part and add that template part to the template or have &#8230; In the ticket that you mentioned, Fabian, there were also a code example on how to introduce making the shortcuts work again, but all three of them introduced the security issue again.&nbsp;</p>\n\n\n\n<p>So I&#8217;m not sure quite how to advise people to work, but there are no good choices right now because you are caught between you want your client&#8217;s side to work, but you also don&#8217;t want their security issue to be out there too long. So the core editor team is definitely working on a solution to fix the security fix, but all, what I just said, is actually just introducing back the security issue into your sites.&nbsp;</p>\n\n\n\n<p>So there are also opinions that short codes might be a legacy way of dealing with things. Maybe it&#8217;s a good call for converting the most important short codes to blocks and use them for the block editor instead of &#8230; but not everybody has the capacity for it, not everybody has the time for it or they&#8217;re just not there yet, but the plugins that they use are also not converting the shortcuts to blocks. So it&#8217;s the nature of the beast. I don&#8217;t think the shortcuts will ever go away, but there&#8217;s a better way to handle that.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah, definitely. In regards to the various options that we have right now, rolling back and that plugin that exists and that code that you can add to your theme, those all add back the vulnerability, like you said. I wasn&#8217;t sure from my understanding whether putting the short code in the template part actually caused any issues. I thought that that was the best proposed solution even though it&#8217;s clunky to have to deal with template parts for those areas individually, but from my understanding, that was the best outcome where you&#8217;re not really introducing the security vulnerability, but also can retain your feature or the look of your site. So I think that is the best option right now, but yeah, it is a little opaque.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good point. Thank you for pointing that out again. Okay. The rest of 6.2.1, quite a few bug fixes for core, as well as for the editor that were found during the release of 6.2 and didn&#8217;t make it into 6.2, but that&#8217;s why the followup release was really on the schedule relatively to the 6.2 release. We will also share the changelog for the release in the show notes, as well as the tickets for the discussion. Paul Byron also added that solution with the template parts to the ticket so you have it all in one place to look up for if you want to follow up on that.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.7</strong></h3>\n\n\n\n<p>All right. Next one up was Gutenberg 15.7 and it had quite a few enhancements. One is that as group and media texts have now allowed blocks attributes that can be passed to the inner block props, so to speak, that means that you can control which blocks can be added to a certain group or a media text block if you wanted to.</p>\n\n\n\n<p><em>Fabian Kägy</em>: That is a really useful thing for extenders or theme builders or if you create a pattern that is meant to be a certain thing, you&#8217;re now able to restrict which other blocks can be used within that area, which can be super useful when you build a call to action and have some styling around that and don&#8217;t want to support a table to be in that call to action, for example. This is so useful to be able to do that. So we don&#8217;t have to build the custom block for it, but instead we can create a pattern and have all those options and can curate that editorial experience to really, the level that we want to curate it to. With the template and template block, we were able to do some things, but now with the allowed blocks, we have most of the controls of an actual inner block area also exposed for these blocks that support inner blocks, which is very useful, I think.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, we have the site logo added a replacement flow that allows you to change out the actual logo using the inspector control. That is just an addition, an alternative way that you can deal with the site logo essentially. You can still use the inline controls, but while you are in the sidebar tweaking your spacing or any other visual controls, you can also quickly swap out the media there, which I think is an interesting approach to this.</p>\n\n\n\n<p>For this one in particular, I&#8217;m interested to see the feedback around it because for the most part, we&#8217;ve been very strict about there should be direct manipulation of content right in the editor canvas and not many controls should live in the inspector controls. It&#8217;s not removing it from the inline, but it&#8217;s also adding that secondary way of manipulating it to the inspector controls. I&#8217;m very curious to see how that will play out and how that may affect just how we use this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So inspector controls is just another way to say sidebar, just make sure where those tools are when you first encounter them. I think it comes more like we want to be a parity with a customizer. That&#8217;s one more step. Then in the inspector in the sidebar, when you replace the media, you are going right directly to the media library and select that. So you don&#8217;t have to &#8230; It seems to be a slightly different workflow than it is from the toolbar.&nbsp;</p>\n\n\n\n<p>So the next feature is actually a really cool addition or enhancement of the fluid typography. So when the fluid typography was introduced first in 6.1, it still had the problem that if you have very large fonts, they wouldn&#8217;t go small enough for the mobile version because the calculations would stop and it would still be too big. This feature introduces a logarithmic scale factor to calculate the minimum font size and now the font adopts to all screen sizes. Even if you have a 68 or 102 pixel font, it will scale down to a mobile version and not stop at 50 or something like that.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: The next thing on the list here is the behavior of the top toolbar has been changed, and that is for a long time now you&#8217;ve been able to using that user settings menu in the upright corner change the behavior of the block toolbar to no longer be attached to the actual block, but instead always be fixed at the top of the editor. The behavior of that has been changed so that you can collapse that toolbar and still have it available there, but because the space in that top toolbar is quite sparse, that allows for just some more flexibility with how things are getting laid out there.&nbsp;</p>\n\n\n\n<p>There are a couple more things that we&#8217;ll talk about later that were changed about the overall layout of that tool toolbar. Actually, I like it very much the way that it&#8217;s coming together and with some of the explorations happening there. I really like the direction where a lot of this is going right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It also fixed &#8230; One particular thing that was still missing is that you now have access to the parent block, which on the block toolbar you were always able to select the parent toolbar and then the sidebar changed and everything. When you had the toolbar fixed on the top, you wouldn&#8217;t have that particular icon available to click on to manipulate the parent block. That has changed too, and it came in with that particular feature there.&nbsp;</p>\n\n\n\n<p>I was always 50/50. Some weeks I like having the block toolbar right on the block, especially when I&#8217;m further down on the block page, and sometimes I just want it on the top and I&#8217;m changing it all the time. I don&#8217;t know how you do it. So I have not tested this new toolbar fixed setting yet, but I definitely will. I read through the comments and there are some discussions. So please add your feedback and your experiences to it and what you think about it to make it the best it can be.</p>\n\n\n\n<p>The next is that the image block now also displays &#8230; No, it&#8217;s not the image block, it&#8217;s when an image is in a block or in a template, it now also displays the borders on the placeholder. So if you have a template that gives you all the series of blocks and each block you want the feature image there, you will also see now in the placeholder the color of the borders, including the color of it. So it makes your choices of images maybe even smoother. It&#8217;s very subtle, but it&#8217;s definitely a live quality enhancement that I definitely like because sometimes you just need to have a picture that does not clash with your borders if you had a design option that image has borders.</p>\n\n\n\n<p><em>Fabian Kägy</em>: It just makes your life a lot easier when you&#8217;re creating a template and you don&#8217;t &#8230; Before this when there was a placeholder where no actual image was selected for the post, it was just difficult to gauge, &#8220;Hey, how do these border controls actually affect this?&#8221; Having the placeholder resemble the actual image much closer and retain all of those border controls is just a very good thing.&nbsp;</p>\n\n\n\n<p>Next up, we have a change in experiment for the actual pattern insertion modal, which I am really excited about. When you use the pattern instruction modal, you know that all of the various patterns are displayed in a grid, and that grid can look a little weird sometimes because it&#8217;s very staggered how these &#8230; Some patterns are very tall, and then the next one is very narrow, very short. There&#8217;s a lot of white space in that modal. This option here tries a masonry layout where they actually &#8230; If you&#8217;ve ever used Pinterest, it&#8217;s essentially that type of layout where it just fills all that white space and it&#8217;s showing all of those, I think, in a more elegant fashion and it just makes that look a little more refined. I&#8217;m very happy to see that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s definitely a more natural look for the pattern modal. The next feature is that duotone block controls are now added to the sidebar. They were hidden before in the block toolbar and you had to know that they are there and the icon was a little bit obscure. Then the options when you do it in the block toolbar is it feels like you are in the wrong place to make those decisions, and now you can make them from the sidebar. I really like that. It&#8217;s a clear adoption to the interfaces that we saw from other design tools.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, in the accessibility section, there are some refactors of how the ARIA attributes for the list view have been modified, which makes it much easier and much more accessible to navigate through the list view. It&#8217;s always good to see those enhancements over time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Those ARIA levels, there were quite a few in the list view, so there was a major overhaul of the display of the list view. I think Alex Stein did some great work there to make it happen and put it over the finish line.</p>\n\n\n\n<p>So I&#8217;m scrolling a little bit further down to the changelog and I have the feeling we are done with 15.7. It was a smaller release, but it had definitely some great features in there.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.8</strong></h3>\n\n\n\n<p>We are now coming up with 15.8. Fabian, you were the release lead on that. Do you want to kind of kick it off and let us know what&#8217;s in there?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Sure. So there were a couple of major features which get their introduction here, which is always fun. One of them is the addition of a command center. There actually is &#8230; There was a post on the make blog from Riad that I&#8217;m sure will get added to the release note or to the podcast notes here that explains a little bit more in depth what this command center actually is. Right now, it is an experiment, but it essentially like spotlights on a Mac, for example, or some of these launchers. You have a quick keyboard command. In this case, it&#8217;s command K, to launch essentially, an open prompt field where you can put in your prompts and jump to different places of the editor or create new pages or just perform quick actions.&nbsp;</p>\n\n\n\n<p>It&#8217;s also meant to be extendable and meant to be something that plugin developers can hook into and allow users to actually quickly navigate their site and perform actions. I&#8217;m really excited to see if this comes to life and explore how this ships out in the future. With this feature, I&#8217;m so here for it, I&#8217;m so excited about it. I cannot wait for the day where this gets expanded outside of the editor view and is just available in all of the screens of WordPress because right now, it is limited to the editor screens, but I think in the future, this will be available in all of the pages of the admin of WordPress. I&#8217;m so looking forward to that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Riad&#8217;s post on the Make Core Blog &#8230; Blog and block, sometimes I get it mixed up, but I did it right this time. It&#8217;s the Make Core Blog. It&#8217;s called Command Center and Request for Feedback. So he explains what the prototype is. There&#8217;s also a small little video that quickly shows you how it works and then explains the API and the static commands and also what dynamic commands are, definitely, and the contextual commands. So there are three commands that you can have it use, but it&#8217;s also the extendability in mind for plugin developers.&nbsp;</p>\n\n\n\n<p>I think it also triggered a few things. If you want to employ an AI to use within the block editor, having a standard interface that can call AI commands is certainly beneficial to the editor. So as Fabian said, I will share the post in the show notes so you can chime in and see what you think about it and how it works. It&#8217;s really hard to describe on a podcast, audio podcast, for that reason.</p>\n\n\n\n<p><em>Fabian Kägy</em>: As somebody who has championed extensibility and plugability in the editor for such a long time, I&#8217;m so happy to see how this feature is getting rolled out and how it is built with that extendability and plugability from the very beginning. So I&#8217;m really excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you want to try it, it&#8217;s still behind the experiment flag. You need to go to install the plugin 15.8 and then go to the Gutenberg menu on your WP admin and then there&#8217;s an experiments page and you need to check the mark for the command center to actually be able to test it.&nbsp;</p>\n\n\n\n<p>The next item on the list is a new feature as well, and the first version of the revisions UI for the global styles, so all the talk about global styles and new features and new options to change things. Some people want to try just something out and then revert to the previous version and there was no revision available for the global styles. Now, there is, and it has actually some nice features. When you have the site editor style, the style site open and click on the revisions, it will show you a history of the revisions, and when you click on the items, it will show you a version of it on the canvas and you can also compare versions.&nbsp;</p>\n\n\n\n<p>So I think it&#8217;s getting there. It definitely needs some more refinement in terms of what information will be there, how many revisions are we showing, and all that. So that&#8217;s a really interesting progression on this global styles editing.</p>\n\n\n\n<p><em>Fabian Kägy</em>: If you&#8217;ve ever used revisions of a standard post or a page since the block editor was introduced, this is a great feature for global styles and I think it&#8217;s the right thing to roll it out for this first, but the live preview of a revision in a rich preview makes me so excited for a future where we can eventually get rid of the existing code view of revisions for standard post content stuff and actually show rich previews of that because, especially since the introduction of blocks, the revisions UI is just really, really difficult for non-technical people and even technical people to really manage because you just get a code view and are trying to figure out what changed.&nbsp;</p>\n\n\n\n<p>This year is a visual preview of what revisions look like for global styles and it&#8217;s making me so excited about what&#8217;s to come for more other visuals or revisions in the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I totally agree that revisions for the posts and pages are on the board for the collaboration project, the phase three of Gutenberg and making revisions be aware is definitely something we are all looking forward to.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, we have the inspector panel. So again we&#8217;re talking about that right-hand sidebar of the global styles panel is now getting or got a refactor to make it work and look more similar to how it works on the standard post. I think that for a long time had been an area of confusion for me where if you wanted to change the typography options or color options in the global styles, the interface was just structured completely differently to how it is structured when you just select a paragraph block, for example, in the standard editor. This is unifying those two experiences to be alike and that just lifts a whole bunch of cognitive load that you have to think about and just makes it work the same way in both of those areas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. In the same way, there is now a details block. We talked about it on the show before. That is in experiments and it now has been enhanced to be able to use InnerBlocks in the details of the spoiler alert block. I call it spoiler alert because the detailed summary that&#8217;s as broad idea that some people don&#8217;t know what we&#8217;re talking about, but you have a sentence or just a headline, and then you get an arrow and then it reveals additional content. You can use it to talk about spoilers in your book review or in your film review or you can hide details that only a certain amount of readers will need about a technical thing or so. In the earlier versions, you only could add a paragraph to those details or only paragraph blocks and now you can add images, you can add quotes and all that. So this is definitely an enrichment of the details block. Also an experiment though.</p>\n\n\n\n<p><em>Fabian Kägy</em>: That is really something &#8230; I know I have been involved with those conversations of the details block for way too long already, but I&#8217;m really looking forward to getting the community feedback of just what&#8217;s available there. It&#8217;s a very difficult thing because the detailed summary is essentially an accordion, but there are some accessibility issues that make it not the best use case for an accordion. So with these changes, just I&#8217;m interested in the feedback of the community of how they&#8217;re able to use all of the design tools to make it function the way they want to or whether there are struggles because this changes a little bit of what was there before and there were some more design options that you had with that earlier approach, but it also was a little less intuitive because it had more levels of nesting and the summary element was its own block and was just more complicated, and this is a much simpler implementation of that block. Also, it therefore removes some of the options that you have available. I&#8217;m really interested to see how that plays out and what people will think about it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Many, many, almost all block collections that came out when the block editor first was released had an accordion block in there. A lot of people liked it for FAQs and for how-tos and all that, but it was interesting, I really didn&#8217;t really know why there wasn&#8217;t an accordion block in core until I read through the discussions about the details and summary. Some people will make it work as an accordion, but what the accordion does, it knows about the other block. So you have an accordion. The first is the tab on top and then you have details and then you have another tab and then the details and each accordion knows about the other one being open or not open. That&#8217;s very hard to replicate in a model way how the block editor works.&nbsp;</p>\n\n\n\n<p>I tested the details in summary block that&#8217;s in the experiment right now with 15.8 and I didn&#8217;t find it particularly easy to navigate because it had some hiccups. I don&#8217;t know how to get out of it. Normally, if you have a list block, when you hit enter twice, you&#8217;re out of it and then you can add additional blocks to it. There are no visual cues when you are in the block writing or adding additional blocks. There are no visual cues, are you still in the details section or are you not? The summary, there is no way to get from the summary to the details block per keyboard. You need to change controls on it.&nbsp;</p>\n\n\n\n<p>So there are a few things, but that&#8217;s why it&#8217;s behind the experimental flag and not yet completely released. So do as a favor and enable that test, that experiment so you can also test it. As Fabian said, community input is wanted and necessary.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, there is another addition to the site editor and that is in the main sidebar of the site editor. There now is a new menu item called Pages that allows you to view the 10 most latest edited pages of your site and directly jump in and edit them. That is one step of actually making content editing in the site editor more possible. Again, that was one of the features that was there in earlier revisions of the site editor but then got taken out before it got released in I believe it was 6.1. These are explorations of slowly adding that content editability back into the site editor. It&#8217;s really interesting to see how that works. It is so difficult how to best communicate with the user when you&#8217;re editing parts of a template versus when you&#8217;re editing parts of the actual content of a page.&nbsp;</p>\n\n\n\n<p>I think that that will still be the most difficult issue to solve for here, but this is slowly introducing that back into the site editor and it is really cool to see just having all of those things in there.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Look at the menu item on the left-hand side, as other people say the dark side of the site editor, but it&#8217;s there. So the next item or feature that got introduced makes Fabian really, really happy and it&#8217;s the introduction of the plugin template settings panel slot, which means on the sidebar, there is now a way for plugin developers to extend the feature set that&#8217;s displayed to the user. Have you tried it out yet? Have you looked at that feature?</p>\n\n\n\n<p><em>Fabian Kägy</em>: I&#8217;ve not yet had a chance to play with it, but yeah, more slots and more places for extenders to add to the experience and showcase custom settings and those types of things always make me happy, especially when they&#8217;re done right, and this seems pretty cool.&nbsp;</p>\n\n\n\n<p>Next up, we have an update that is very useful for extenders again. It consolidates and adds some more documentations to the storybook. If you&#8217;re not familiar with the storybook, that is actually something when you go to the GitHub repository of the Gutenberg plugin, in the right-hand sidebar there is, I think it&#8217;s called pages or deployments. You can actually jump to that storybook right from GitHub and view it. The storybook essentially is showcasing all of the various React components that were built as part of the Gutenberg plugin and are available in WordPress core and is showing live previews of them with some controls. You can tweak some of the settings right there visually and also have some of the documentation there. This consolidates and changes a little bit of just how that is structured and how that appears. Just in general, the storybook that has been there for a long time is a super valuable and great tool and it&#8217;s always nice to see additional enhancements for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I definitely want to point that out that at WordCamp Asia, I heard from a few people that were at the contributor day and working with the core editor table there, they were really surprised that many developers that came and wanted to work on things did not know about the storybook. I think we have not done a good job in explaining what it is and pointing people to it. I think it&#8217;s part of the documentation that is in the components, but it&#8217;s not referred to &#8230; Most of the time, it&#8217;s not referred to in the documentation on the developer site in the block editor handbook. We are going to change that a little bit and add more links to the storybook for the various components because it&#8217;s such a rich developer experience where you can change things and then you click on a button and it gives you the code for it for the changes that you made and you can immediately reuse it in your own code base. Definitely, I take any chance when I can talk about the storybook now.</p>\n\n\n\n<p>The next part is a feature for the block editor that is talking about the dimension controls and it&#8217;s not always visible. So now, it&#8217;s an attempt to show all the dimensions control at the beginning and not hide them so much where you had to open them and then decide do you want to see the padding, do you want to see the margin. It&#8217;s now easily available so you don&#8217;t have to look for it, what padding and margins is, because we all talk about padding and margins, but we never talk about dimension controls. So when the words appear on the screen, you don&#8217;t as easily recognize that that&#8217;s what you&#8217;re talking about.</p>\n\n\n\n<p><em>Fabian Kägy</em>: This, again, is also something where it is just difficult and interesting. The vertical space that we have available in the sidebar is very limited and it&#8217;s always an interesting balance to strike of how much do we show by default versus how much do we hide behind the setting so it&#8217;s not overwhelming for somebody that is new to the editor, but also makes it discoverable for somebody. So it is not changing any of the features that are available, but it is trying to show some more by default. I&#8217;m very interested to see how folks will react to that, whether it feels overwhelming or whether it makes it more approachable. The only real way to find that out is by actually testing that. So I&#8217;m glad to see those explorations happening in the plugin.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It might go away again or will be tweaked later on. So your comments are certainly wanted and necessary. We share in the show notes the release post for 15.7, the release post for 15.8. By the time you listen to this, Fabian will have published it, and I&#8217;m sure also, Sarah Gooding will talk about both releases or already has on 15.7 and 15.8.&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>or I just wanted to at the end of it &#8230; So those were all the releases and we are now talking about what&#8217;s in active development or discussed. We have right now the largest number of experiments in the block editor since the beginning. I think there are now seven experiments hiding on the experiments page for the plugin. So let&#8217;s talk about them. Some of them we already talked about. So it starts out with a zoomed out view and it&#8217;s test a new zoomed out view on the site editor. So I&#8217;m reading from the page now and it also has a warning attached to it, &#8220;The new feature is not ready. You may experience UX issues that are being addressed.&#8221; UX means user experience, just to clarify that. Did you test that before?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah. So the zoomed out view essentially means that you can more quickly navigate through or get a more holistic view of your page and not appearing in the same size as you would always see it, but instead, it zooms out and shows you more of your entire page smaller in the canvas. That is very useful when you want to make changes to your global styles and just want to see how it affects your site more holistically or when you tweak those things. Especially when you switch between block theme variations, that is just useful to see how it will not just affect that very small area of the site that you see in your viewport, but instead see it more broadly for an entire page.&nbsp;</p>\n\n\n\n<p>So I think this is a great thing to work on. Right now, as the warning says, there are some issues that are being worked on. Especially for working with global styles, having that more zoomed out view is very useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So if you tested it and you have an idea how to make it better, definitely air those on GitHub and filing an issue of that. So the second one, it says color randomizer, test the global styles color randomizer, a utility that lets you mix the current color palette pseudo- randomly. I think it&#8217;s one of those features where it said, &#8220;Okay. It&#8217;s cool to have and cool to test things out, but it&#8217;s not something that a lot of people would think they needed.&#8221; Do you have any thoughts on it?&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: It is one of those features where from my perspective as somebody who works a lot in the large agency space, that is not a feature I would&#8217;ve ever come up with, but I can see how, especially if you&#8217;re somebody who&#8217;s just playing around in the editor trying to build a new design, it can be a useful partner to give you some inspiration of maybe you&#8217;re not the best with color theory and coming up with an accessible color palette yourself, and that can be a great way to get some inspiration for just showing you different variations of what your site could look like with different colors and spark some of that imagination, but it is one of those features that I know for a client site that has a design guide with strict color I would want to disable that feature and would not want to expose certain clients to that feature. So it&#8217;s definitely one of those where I can see it being useful for some, but also rather distracting for others. So I&#8217;m interested to see how that will actually get rolled out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It might also be part of the explorations, but the design team does in figuring out is there a way to include different palettes that are on third-party sites that can come in and you can choose from, but I think it&#8217;s not a high priority right now for the team. That&#8217;s why it&#8217;s all still in the experimental phase and it hasn&#8217;t gone that route yet. I heard Matt Mullenweg and one of his state of the word talking about making color palettes that are out in the universe interesting, available to site builders or site owners in some way or shape.&nbsp;</p>\n\n\n\n<p>The third test item on the page is the command center, a test of command center, open it up using command K in the site of post editor. We talked about it. I don&#8217;t think we need to elaborate some more, but that&#8217;s where you find it.&nbsp;</p>\n\n\n\n<p>The fourth one is the grid variation for a group block, test the grid layout type as a new variation for the group block. Right now, that only works on the site editor because it&#8217;s actually a template or site design approach to the grid. Grid, it&#8217;s actually a CSS feature. So this tries to explore how you can make templates that adhere to a certain grid layout, but I&#8217;m not as knowledgeable about design to be able to use that. I think I need a little pre-beginner&#8217;s tutorial for that.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: It is. I am really happy to see this exploration being done right now. In the last couple of years, we got that row and stack variation of the group block, which essentially as a developer, that is my flex box. Flex box allows you to layout content in one direction, so either horizontally, the row, or vertically with the stack. The grid, you can achieve some of those grid layouts with the columns block, but the columns block, it is very difficult for it to wrap around. So if you wanted to, let&#8217;s say, have a three column grid that is not just one free column layout, but instead has two rows of those two columns, that is not really or is technically possible, but it is not ideal. That is where grid layouts come into play and are, I think, so much more powerful.</p>\n\n\n\n<p>I think there also is an exploration that is not listed here of adding an actual grid layout or using CSS grid layout for the grid in the query block. We weren&#8217;t able to use grid when the editor first came out because it was too new of a CSS feature and we needed to support more older browsers, but that browser support has changed so much in the last couple of years that we&#8217;re now able to use grid in the editor. It just opens up so many new design possibilities and makes it so much easier.&nbsp;</p>\n\n\n\n<p>I&#8217;ll say on the custom development side, grid block is one of the first things that we build on one or a grid block is one of the first things we build on many custom sites because it is just much more powerful than the columns block and also easier to use in a way. So I&#8217;m excited for these explorations.&nbsp;</p>\n\n\n\n<p>I will say though, a couple of releases ago, the group block changed to show that variation picker when you first insert it where you have to pick between the variations. I&#8217;m not yet sure I&#8217;m in love with that approach of &#8230; I like the various variations of the group block, but when I add a new group, it always pauses me a little too much because I need to step back and, &#8220;Hey, I just want to start with a default grid or a default group and then continue with it.&#8221; So I&#8217;m happy for more of these variations of the group block and for more of those layout controls. I&#8217;m not quite sure we have found the best way to expose them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I hear you. Making the decision to use a group block now becomes also a decision of what kind of flow you want and you are not there yet. When you get the group block, I understand that, but I&#8217;m also excited for the grid layout in terms of it is a feature that was requested quite a bit in the early days of the block editor layout site editing things, and it&#8217;s still missing. So now, certain plug-ins and block collections and theme collections have stepped in and allowed that already. So core is a little bit behind on that, but of course, core has a different outlook for the site editor than plugin developers have.&nbsp;</p>\n\n\n\n<p>The fifth experiment in the experiments page is the details block with the detailed summary block. We talked about it. It&#8217;s there for you to test out.</p>\n\n\n\n<p>The sixth one is the block theme previews, and it enables block theme previews. That&#8217;s not much of an explanation, but what it allows you is on your site &#8230; So the customizer had the live preview of themes that were already installed on your site so you can see how your site would need to change to when a theme would be activated. It&#8217;s more a decision making tool rather than a good design tool.&nbsp;</p>\n\n\n\n<p>So with many, many block themes coming online, we are now beyond 300 in the directory. I think the largest number is 306. I think it helps with the decision if you want to change your theme out to have a better preview, and the customers that preview doesn&#8217;t work with it. This is the first iteration. I ran that through themes through the preview and it was a great experience, so much better than the original one to review certain parts of an existing site.</p>\n\n\n\n<p>It also revealed that not all block themes are alike. There are significant differences, and having a tool to actually explore those differences or even notice them is invaluable, definitely. Not every theme behaves with this live preview feature in it, so if you are working on themes and either you have a starting theme in an agency or you use a collection of themes to build your sites to choose from, you might want to test them with this theme preview so you can turn on and off features and showcase a few things that are available in the preview.&nbsp;</p>\n\n\n\n<p>Also, please, please comment on the issues or file issues on GitHub after your tests. I already found one that when I look for style variation and I want to see how a page changed the style variation, I don&#8217;t have a way to do this because the page that is linked, the link doesn&#8217;t go to the preview, it goes to the page in the template editor, and all of a sudden, I&#8217;m out of my mindset on a preview, but all of a sudden it gets me into the editor. So that&#8217;s common for things that are in testing, but it also needs to be pointed out that that&#8217;s a major stumbling point for someone who uses the feature for the first time.&nbsp;</p>\n\n\n\n<p>The last one of the tests has just come in. It&#8217;s a navigation block that uses the still in Experiment interactivity API, and I have not used it. Did you look at that, Fabian?</p>\n\n\n\n<p><em>Fabian Kägy</em>: I looked at it briefly, but the summary of it is if you&#8217;re using it and you notice a difference that worked before, there&#8217;s a bug because this essentially swaps out the engine, but you should notice it as an end user. It changes how the front end JavaScript of the site works to use that interactivity API, but instead of some custom JavaScript that was purposefully written for this, using that interactivity API to make it more declarative, but as an end user, toggling that setting should not change anything about it works. Yeah, it may produce the actual bundle size, therefore make your site a little bit faster, but usability wise, there should be no difference and there should be full-on feature parity with how the navigation works today before or after you switch that setting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good to know. So if you don&#8217;t notice anything, it&#8217;s okay. Excellent. So this brings us to the end of the show today. Well, I think we talked a lot about all the new things that come to block editor and to WordPress. Thank you so much for joining me today. Fabian, is there anything that you want our listeners to know about the block editor, about WordPress, about 10up? Now is the chance to talk about it and we&#8217;ll add links to the show notes. I just wanted to say about 10up, you have a wonderful educational site about the block editor with quite a few white papers and tutorials. How did that come about? Is it your work or…?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah. The <a href=\"https://gutenberg.10up.com/\">gutenberg.10up.com</a> website, our block editor best practice site has been my baby for the last year and a half or so, where I got to spend a lot of time actually writing down how we as an agency approach working with the block editor and setting up the best practices for how to do that in the agency setting for that special type of client. Whereas the main documentation of core is more geared to end users, which is the right thing, but because of that, we decided that there is space for an additional resource to focus on the things that are important for those very curated experience for big clients and so forth.&nbsp;</p>\n\n\n\n<p>So that is one thing that I would mention, just taking a look at that <a href=\"https://gutenberg.10up.com/\">gutenberg.10up.com</a> website, and if you have any feedback on that, feel free to reach out anywhere on the Make Slack or on Twitter or Masévon or Blue Sky or wherever you can find me pretty much always talking about block editor stuff.&nbsp;</p>\n\n\n\n<p>Then the other thing that I will just mention is the 10up block components NPM package, which is my passion project and has been for the last three years or so, which essentially is a collection of React components that work like all of the WordPress packages, the WordPress components, WordPress block editor components. It is a collection of additional components that are adding sometimes very complex, sometimes easy functionality for you to build. If you build custom blocks, making that a whole lot easier so you have to write less code and know that it&#8217;s tested and is working with the way that it should, and doing that in a way that feels 100% like it is just core WordPress. I&#8217;m very happy and proud of that project. If you find it useful or if you have questions or feedback about that, always happy to chat.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much. There&#8217;s some great resources. You mentioned custom blocks. There has been discussion around static block with this dynamic blocks. Where do you land?</p>\n\n\n\n<p><em>Fabian Kägy</em>: The way I think about it, if I&#8217;m building a plugin that is meant for the official directory where I as a developer do not have access to the site where the code is running on, I would go with a static block unless I need to show dynamic data. If I as the developer can access and have maintenance over the site I built dynamic blocks, and that means in the agency context where we&#8217;re often changing designs, making quick iterations, we are, for the most part, only building dynamic blocks because of that because we cannot spend the time to deal with deprecations and all of those things.&nbsp;</p>\n\n\n\n<p>It really comes down to that where if you have &#8230; The thing that you should ask yourself is, &#8220;What should happen when I need to change something about this block on a code level? Should all of the old instances that maybe were published three years ago, should they also get those updates automatically or should I not &#8230; Should that historical content stay untouched and just stay the way that it was?&#8221; If it should stay in touch, static blocks is your right answer. That is the way to go. If it should update in all instances or if you need to modify the block structure very often and have access to the maintenance there, dynamic blocks are much easier to deal with and are &#8230; So I&#8217;m coming down most of the time on the dynamic side.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Dynamic blocks side. All right. So well, thank you for answering these quick questions and having some insight in how you work as a longtime block editor adopter and in the agencies. It was a great pleasure talking to you, Fabian. We will share all the links that you mentioned, of course, in the show notes. Before we end the show, oh, what&#8217;s your Twitter handle, Fabian?</p>\n\n\n\n<p><em>Fabian Kägy</em>: My full name spelled out, so F-A-B-I-A-N-K-A-E-G-Y, just all spelled together. You should be able to search for it and it should come up.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s just for the people who don&#8217;t go through the show notes. We, of course, have all the links in the show notes. As always, the show notes will be published on gutenbergtimes.com/podcast. This is episode 83. If you have questions, suggestions, and news that you want us to include in the next show, please send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s c<a href=\"mailto:hangelog@gutenbergtimes.com\">hangelog@gutenbergtimes.com</a>. Thank you all for listening. Thank you for being here, Fabian. This is goodbye and I wish you a wonderful weekend.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Thank you so much for having me.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 21 May 2023 08:18: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:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: WordPress 6.2.2 Restores Shortcode Support in Block Templates, Fixes Security Issue\";s:7:\"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=145264\";s:7:\"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/wordpress-6-2-2-restores-shortcode-support-in-block-templates-fixes-security-issue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1593:\"<p><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2</a> was released early this morning as a rapid follow-up to 6.2.1, which introduced a bug that <a href=\"https://wptavern.com/wordpress-6-2-1-update-breaks-shortcode-support-in-block-templates\">broke shortcode support in block templates</a>. Version 6.2.1 was also an important security release, but due to the catastrophic breakage for those using shortcodes in block templates, some users were implementing insecure workarounds or simply downgrading to 6.2 to keep critical functionality working on their websites.</p>\n\n\n\n<p>WordPress contributors worked quickly over the weekend to ensure that users can now update to 6.2.2 with their shortcodes intact. The release post identified the removal of shorcode support in the previous release as &#8220;a regression&#8221; and a bug. This is an important recognition, as shortcodes are still a tool that users frequently rely on to insert functionality from plugins that haven&#8217;t made it available as a block, as well as a necessity for things that won&#8217;t work without inline shortcodes.  </p>\n\n\n\n<p>Version 6.2.2 is also a security release, as core contributor Jonathan Desrosiers said that the issue patched in 6.2.1 &#8220;needed further hardening&#8221; in this update.</p>\n\n\n\n<p>Users are advised to update immediately and automatic updates are rolling out. Many reported having turned automatic background updates off for core after 6.2.1 broke their websites. Users who did so will need to manually update as soon as possible. </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, 20 May 2023 21:38:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:118:\"Gutenberg Times: WordPress 6.3 roadmap and release squad, WPCampus schedule, Wayfinder and more—Weekend Edition #254\";s:7:\"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=24143\";s:7:\"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://gutenbergtimes.com/wordpress-6-3-roadmap-and-release-squad-wpcampus-schedule-wayfinder-and-more-weekend-edition-254/\";s: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:24412:\"<p>Howdy, </p>\n\n\n\n<p>Hubby and I are almost settled in our new apartment, except we are still missing our furniture. They are scheduled to arrive on June 1, which would make it exactly 74 days, since they all got packed up in Sarasota. Yesterday we measured all the rooms, so we can decide where we can place the big items, and how to organize our offices. So, when I write &#8220;settled&#8221;, I mean getting accustomed to living in our neighborhood, organizing our infrastructure of daily life and using all the transportation choices, rather than being settled in the apartment. </p>\n\n\n\n<p>WordCamp Europe is coming up fast. There are a ton of Gutenberg talks on the roster this year. <a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\">I collected them all in a separate post.</a> And if you are going in person, make sure we connect and have a chat. You can <a href=\"https://twitter.com/bph\">DM me on Twitter</a>, s<a href=\"mailto:pauli@gutenbergtimes.com\">end an email </a>or just pick a <a href=\"https://calendly.com/pauli-haack/wordcamp-europe?month=2023-06\">slot from the public calendar.</a> </p>\n\n\n\n<p>I am excited about exploring the city a couple of days prior to Contributor Day. </p>\n\n\n\n<p>This Weekend edition is again full of updates on the open-source projects, tutorials, and videos. Hope y&#8217;all enjoy it. </p>\n\n\n\n<p>Have a lovely 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\">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-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\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/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/05/Guiseppe-Milo-Athens-Greece-web.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" target=\"_self\" rel=\"\"><span>WordCamp Europe 2023 &#8211; Block editor talks, meet &#038; greet, Contributor Day and more</span></a></div><div class=\"ngl-article-excerpt\">WordCamp Europe is less than four weeks away, the speakers and sessions have been announced, and the schedule is now available. Time to make plans. <a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" 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<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\"><strong>The Roadmap for the WordPress 6.3 release</strong></a> has been published. Anne McCarthy identified three focus areas for this release: </p>\n\n\n\n<ul>\n<li>Polishing the Site Editor,</li>\n\n\n\n<li>Iterating on blocks, </li>\n\n\n\n<li>Expanding patterns</li>\n\n\n\n<li>Stabilizing usability and prioritizing refinement,</li>\n\n\n\n<li>Enhancing design tools,</li>\n\n\n\n<li>Leveling up APIs,</li>\n\n\n\n<li>Addressing&nbsp;PHP&nbsp;items (8.x compatibility), and </li>\n\n\n\n<li>Performance</li>\n</ul>\n\n\n\n<p>For each focus area, she described the scope and listed GitHub issues and PRs of the work in progress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the heals for the Roadmap, <strong>Hector Prieto</strong> published an update on the <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\"><strong>WordPress 6.3 Planning Roundup</strong></a>, confirming the release scheduled as it was proposed earlier and announcing Matias Ventura as the release lead and all other members of the release squad. </p>\n\n\n\n<ul>\n<li>Beta 1 will be on June 27, 2023</li>\n\n\n\n<li>Release Candidate 1 + Dev Notes are scheduled for July 18th, 2023</li>\n\n\n\n<li>General release aimed for August 8th, 2023. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>During the latest Hallway Hangout, contributors discussed what is in the works for the Site Editor and what can be expected for WordPress 6.3. Anne McCarty posted a summary and shared the video recording in <strong> <a href=\"https://make.wordpress.org/test/2023/05/11/hallway-hangout-lets-chat-about-the-site-editor-6-3/\">Hallway Hangout: Let’s chat about the Site Editor &amp; 6.3</a></strong>. </p>\n\n\n\n<p><strong>The next Hallway Hangout is scheduled for May 25, 2023 &#8211; 17:00 UTC. Nick Diego and Justin Tadlock will be discussing <a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Curating the editor and building block themes for clients</a>. </strong>Don&#8217;t miss it. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293612715/\">RSVP via Meetup.com</a></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293612715/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his <a href=\"https://make.wordpress.org/design/2023/05/08/design-share-apr-24-may-5/\"><strong>Design Share: Apr 24–May 5</strong></a>, Joen Asmussen shared what the WordPress design team has been working on the last two weeks. He lists quite a few avenues with their respective GitHub PR/Issue links, so you can follow along and chime in. </p>\n\n\n\n<ul>\n<li>Document title &#8211; as part of the re-introduction content editing to the site editor, a short video shows the switch in the UI for either editing the template or the single page, that is using the template</li>\n\n\n\n<li>Revision History Management &#8211; explores a potential future side by side page comparison</li>\n\n\n\n<li>Vertical Text as a new design tool introduced to certain blocks</li>\n\n\n\n<li>Featured Image improvements &#8211; show a more compact and streamlined interface to handle feature images settings</li>\n</ul>\n\n\n\n<img />\n\n\n\n<p><strong>Justin Tadlock</strong> published the monthly roundup <a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\"><strong>What’s new for developers? (May 2023)</strong></a> on the developer blog. It&#8217;s again full of focused notes about changes in the WordPress worlds relevant for extenders, plugin and theme builders and agency or freelance developers building sites for others.  </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>published the next <strong><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a>.</strong> &#8220;With the&nbsp;<a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap to 6.3 published</a>&nbsp;and another version of&nbsp;Gutenberg&nbsp;out in the wild, it’s time to test some of the upcoming features that are in the works to upgrade and polish the experience of using the Site Editor:&#8221; she wrote and listed all eight of them. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Led by <strong>Fabian Kägy</strong>, <strong>Gutenberg 15.8</strong> was released on May 18th, 2023. The number of PRs merged for this release was considerably higher than for 15.7 and it&#8217;s expected to rise with the urgency of the upcoming WordPress 6.3 release. There are only three Gutenberg plugins releases left until Beta 1 on June 27. </p>\n\n\n\n<ul>\n<li>15.9 scheduled for May 31</li>\n\n\n\n<li>16.0 to be released on Jun 14 (after WordCamp Europe) </li>\n\n\n\n<li>16.1 RC 1 to be release on June 21</li>\n</ul>\n\n\n\n<p>In his release post <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a>, Kägy highlight three new features that need testing from Gutenberg plugin users: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-the-pages-menu-to-the-site-editor-50463\">Add the pages menu to the site editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-revisions-ui-50089\">Add revisions UI to the global styles interface</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-theme-previews-for-block-themes-50030\">Add Theme Previews for block themes</a></li>\n\n\n\n<li>One feature is now still listed in experiments. It will come out next Gutenberg plugin release: The Command Center AKA Wayfinder. (See Riad Benguella&#8217;s post. )</li>\n</ul>\n\n\n\n<p>It&#8217;s always a great pleasure to connect with <strong>Fabian Kägy</strong>. We had a great time geeking out over the blog editor while recording episode 83 of the Gutenberg Changelog. We discussed Gutenberg 15.7, 15.8 the feature available on the Experiments page and 6.2.1, Gutenberg Storybook and 10up tools. The episode  is at the editor now, and it will arrive in your favorite podcast app over the weekend. </p>\n\n\n\n<img />\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>?️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\">Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments</a> with special guest, Fabian Kägy and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://twitter.com/riadbenguella\">Riad Benguella</a></strong> published the post <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\"><strong>C</strong></a><strong><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">ommand Center: Request for feedback</a> </strong>asking for testing and review of a new feature that will come out of the experimental phase for Gutenberg 15.9, for now called the Command Center, and the Marketing team is probably recommending a new name: The<strong> Wayfinder. </strong></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>Caroline Nymark</strong> published an <a href=\"https://fullsiteediting.com/site-creators/introduction-to-the-site-editor/\"><strong>Introduction to the Site Editor for creators</strong>.</a> This tutorial is meant for Beginners and no-code creators and covers everything available since WordPress 6.2 and Gutenberg 15.7. Although it&#8217;s title Introduction, it is quite comprehensive and covers the Site Editor, Navigation, Styles, Templates and Template parts. Then she dives deeper into the Design Tools via the Styles menu item. You will be creating or modifying themes in no time! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://wordpress.org/plugins/maxi-blocks/\"><strong>Maxi Blocks</strong></a> – a template library for site builders using  WordPress Block editor. It came recently out of beta and offers developers a whole range of design tools in an interface that has been built on top of Gutenberg, yet using custom components to offer additional design features. The plugin comes with hundreds of icons, patterns, templates and sixteen custom blocks. The Pro version is available at <a href=\"https://maxiblocks.com/\">MaxiBlocks.com</a>. It&#8217;s meant for designers looking for all the tools, not so much for beginners or site owners. There will be a learning curve due to the additional UI components. </p>\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<p><strong><a href=\"https://twitter.com/mahdiali_\">MahdiAli Khanusiya</a> </strong>built the plugin<strong> </strong><a href=\"https://wordpress.org/plugins/patternswp/\"><strong>PatternWP</strong></a> &#8211; a pattern block library for WordPress. The first version offers patterns on many categories. for the busy site owner. The plan is to be adding new patterns and templates on a consistent basis. </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=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>Lots of feedback has been provided during the Call for Exploration. <strong>Anne McCarthy </strong>published <a href=\"https://make.wordpress.org/test/2023/05/04/fse-program-build-a-block-theme-summary/\"><strong>FSE Program Build a Block Theme Summary</strong></a>. The TL;DR: &#8220;Using the Site Editor alongside the Create Block Theme plugin supercharges the experience, mainly by filling in gaps around font management and offering more nuanced creating/exporting options. With these added features, the Site Editor is both left to shine as a theme building tool and the current known pain points impacting regular site building come to the surface, like needing more clarity around where layers of styles are coming from. In general, feedback fell into three categories: Create Block Theme plugin pain points, missing options in the Site Editor (font management, synced patterns, desire for more styling options with certain blocks), and UX considerations for the Site Editor that match the site building experience. &#8221; she wrote. The videos shared from the contributors are certainly eye-opening. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mikemcalister\">Mike McAlister</a></strong> explains in his article how <a href=\"https://olliewp.com/a-native-and-iterative-approach-to-responsive-control-in-wordress/\"><strong>a native and iterative approach to responsive control in WordPress</strong></a> could bridge the gap between the goals to rely on <a href=\"https://developer.wordpress.org/news/2023/02/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">i<em>ntrinsic design</em></a> and still be able to handle edge cases for viewpoint-driven responsiveness of a site. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=Zh0ANsYgoN0\"><strong>WordPress Gutenberg Product Manager explains what&#8217;s next for Responsive Websites and Block Themes</strong></a>,  <strong>Jamie Marsland</strong> interviewed <strong>Rich Tabor</strong> on intrinsic design, what a theme product might look like for theme creators and what the next wave of block building inspiration might arrive at the WordPress shores. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/jkoussertari\">James Koussertari</a></strong> explained <a href=\"https://gutenbergmarket.com/news/using-layout-sizes-in-themejson\"><strong>Using Layout Sizes in theme.json</strong></a>. &#8220;The layout setting in theme.json is great for developers, as they can set default container sizes for their design system, easily in one place. It also means that content editors do not have to think about which container sizes to set manually each time they add a block.&#8221; he wrote on the blog of the Gutenberg Market</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The latest call for testing ended last week, too and <strong>Anne McCarthy</strong> recounts the feedback: <a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\"><strong>FSE Program Front Page Fun Summary</strong></a>. The high-level feedback revealed: &#8220;In general, the call for testing was relatively tame bug wise, with only a few obvious ones found, mainly in the Navigation block. The usability feedback related to many ongoing projects in the Site Editor underscoring the impact of solving these consistent problems, in particular the clarification of the content &lt;> template relationship and confusion around the overall experience of managing pieces of navigation. &#8221; and &#8220;While the new Grid layout type was the primary focus of the testing call, feedback on it was limited to suggestions for consolidating the various options between the grid layout, Columns block, Gallery block, and Table block.&#8221; McCarthy 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=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/3LPU4S\">Alfredo Navas</a></strong>, WebDevStudios was <a href=\"https://webdevstudios.com/2023/05/16/query-loop-block/\"><strong>Having Fun with Query Loop Block</strong></a> and published a post to tell you all about it. He takes you along to explore the usefulness of the Query Loop block and learn how to extend its capabilities.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest post for the Developer Blog, <strong>Michael Burridge</strong> created a tutorial on  <a href=\"https://developer.wordpress.org/news/2023/05/useentityrecords-an-easier-way-to-fetch-wordpress-data/\"><strong>useEntityRecords: an easier way to fetch WordPress data</strong></a>. If you have simple data fetching requirements and don’t need additional customization or resolution checks, the <code>useEntityRecords</code> function can be a straightforward choice. Burridge shows  how it simplifies data handling in contrast to useSelect + getEntityRecords. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Don&#8217;t miss next week&#8217;s <strong>Developer Hours</strong> about the new WordPress tool called Playground. <strong>Adam Zieliński</strong> will introduce the app and demo some great use cases for it. There are two events, so all timezones get a chance to participate live. </p>\n\n\n\n<ul>\n<li><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293196462/\">May 23, 2023, at 17:00 UTC (11 am EDT)</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293196452/\">May 24, 2023, at 8 am UTC </a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>WPCampus </strong>will take place from July 12 to the 14th, 2023 in New Orleans. The organizing team released their <a href=\"https://2023.wpcampus.org/schedule/\">schedule.</a> WPCampus 2023 is a hybrid event. <strong><a href=\"https://2023.wpcampus.org/tickets/\">Join in-person or online</a>.</strong></p>\n\n\n\n<p>I spotted Nick Diego on the roster with his 3-hour Workshop: <a href=\"https://2023.wpcampus.org/schedule/workshops/modern-wordpress-building-techniques-full-site-editing-in-higher-ed/\"><strong>Modern WordPress Building Techniques: Full Site Editing in Higher Ed</strong></a>. </p>\n\n\n\n<p>But there is more: </p>\n\n\n\n<ul>\n<li>Daniel Tyger and Tom O&#8217;Donnell from the University of Maine will share their Journey <a href=\"https://2023.wpcampus.org/schedule/from-classic-to-blocks-in-90-days/\"><strong>From Classic to Blocks in 90 Days</strong></a>?</li>\n\n\n\n<li>Joni Halabi will present on <a href=\"https://2023.wpcampus.org/schedule/make-it-your-own-integrating-twig-templates-with-your-wordpress-block-theme/\"><strong>Make it your own: Integrating Twig templates with your WordPress block theme</strong></a></li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/development-of-a-no-code-theme-for-teaching-full-site-editing-to-beginning-wordpress-students/\"><strong>Development of a No-Code Theme for Teaching Full Site Editing to Beginning WordPress Students</strong></a> with Drake Gómez</li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/destination-full-site-editing-all-the-steps-monmouth-university-took-to-prepare-the-future-of-wordpress/\"><strong>Destination Full-Site Editing: All the Steps Monmouth University Took to Prepare the Future of WordPress</strong></a> with <strong>Steve Graboski</strong></li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/55330/\"><strong>Developing a design system within the block editor</strong></a> with <strong>Nick Novak</strong></li>\n\n\n\n<li></li>\n</ul>\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: Colorful Duplo blocks by Maruska, <a href=\"https://wordpress.org/photos/photo/2206266bbc/\">found on WordPress Photos site.</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, 20 May 2023 13:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:52:\"WordPress.org blog: WordPress 6.2.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14974\";s:7:\"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:68:\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5417:\"<h2 class=\"wp-block-heading\">WordPress 6.2.2 is now available!</h2>\n\n\n\n<p>The 6.2.2 minor release addresses <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.2&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">1 bug</a> and 1 security issue. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.9 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.2 is a rapid response release to address a regression in 6.2.1 and further patch a vulnerability addressed in 6.2.1. The next major release will be<a href=\"https://make.wordpress.org/core/6-3/\"> version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>The update process will begin automatically if you have sites that support automatic background updates.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.2.zip\">download WordPress 6.2.2 from WordPress.org</a> or visit your WordPress Dashboard, click “Updates,” and click “Update Now.”</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Security updates included in this release</strong></h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities and allowing them to be fixed in this release.&nbsp;</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user-generated data; thanks to Liam Gladdy of<a href=\"https://wpengine.com/\"> WP Engine</a> for reporting this issue.</li>\n</ul>\n\n\n\n<p>The issue above was originally patched in the 6.2.1 release, but needed further hardening here in 6.2.2. The Core team is thankful for the community in their response to 6.2.1 and collaboration on finding the best path forward for proper resolution in 6.2.2. The folks who worked on 6.2.2 are especially appreciative for everyone’s understanding while they worked asynchronously to get this out the door as quickly as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>.</p>\n\n\n\n<p>WordPress 6.2.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/Clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/Otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, and <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 May 2023 04:09:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: WordPress 6.3 Development Kicks Off to Conclude Gutenberg Phase 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:30:\"https://wptavern.com/?p=145206\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/wordpress-6-3-development-kicks-off-to-conclude-gutenberg-phase-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:3694:\"<p>The WordPress 6.3 development cycle has begun and work is already underway  on an ambitious list of features that will debut in the upcoming major release. It will <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">cap off Phase 2</a> of the Gutenberg project, with an emphasis on polishing customization features and making them easier to use.</p>\n\n\n\n<p>WordPress 6.3 Editor Triage co-lead Anne McCarthy published a <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap to 6.3</a> this week, which summarizes what users can expect:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This release aims to make it easier for users to edit pages, manage navigation, and adjust styles all directly in the Site Editor. It also seeks to provide detailed, relevant information when exploring different parts of the site, such as showing the number of posts per page when viewing relevant blog templates. </p>\n</blockquote>\n\n\n\n<p>In addition to polishing and wrapping up phase 2, McCarthy&#8217;s post outlines the new features that are coming. Here are a few of the highlights: </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44461\">Introduce content editing</a>, including clarifying the relationship between templates and content.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/50396\">Add a Navigation section to the Site Editor</a>&nbsp;with nuanced options depending on the number of menus and complexity of each.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/50463\">Add a Pages section to the Site Editor</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/49014\">Add a Styles section to the Site Editor.</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/49601\">Expose revisions (styles, templates, and template parts)</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/48457\">Add a command center tool</a> for easily accessing different parts of your site. <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">More information here</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/50030\">Add Theme Previews for block themes</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/38990\">Surface aspect ratio tooling</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/49175\">Consider adding distraction free mode to Site Editor</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/25071\">Keep custom templates and template parts across themes</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/45271\">Add an interface for font management</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/50397#top\">Explore a path towards “library” management with reusable blocks and template parts</a>.</li>\n</ul>\n\n\n\n<p>This is a tentative glimpse at some of the user-facing features that may be coming in WordPress 6.3, but the <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap</a> includes many more items, screenshots, and quick demos.</p>\n\n\n\n<p>&#8220;As always, what’s shared here is being actively pursued, but doesn’t necessarily mean each will make it into the final release of WordPress 6.3,&#8221; McCarthy said.</p>\n\n\n\n<p>Gutenberg Lead Architect Matías Ventura will be <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">leading WordPress 6.3</a>. Beta 1 is expected in a little more than a month on June 27, 2023, with RC 1 on July 18, and the general release scheduled for August 8.</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, 19 May 2023 22:13: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: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:73:\"WPTavern: WCEU 2023 Publishes Schedule, Reaffirms Commitment to Diversity\";s:7:\"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=145217\";s:7:\"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://wptavern.com/wceu-2023-publishes-schedule-reaffirms-commitment-to-diversity\";s: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:3577:\"<p><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe</a> 2023 is just under three weeks away from happening in Athens on June 8-10. More than 2,700 <a href=\"https://europe.wordcamp.org/2023/tickets/\">tickets</a> have been purchased and 527 remain, along with 49 micro-sponsor tickets. </p>\n\n\n\n<p>Speaker announcements have concluded and the official <a href=\"https://europe.wordcamp.org/2023/schedule/\">schedule</a> was published today. WCEU will be running three tracks of presentations and two tracks for workshops. Organizers have also announced a <a href=\"https://europe.wordcamp.org/2023/welness-track-activities/\">Wellness Track</a> that will feature different activities throughout the day, including a Yoga class, a Tai Chi class, and a group hike.</p>\n\n\n\n<p>&#8220;The Wellness Track is an important addition to WordCamp Europe because we need to find a balance and be more focused on taking care of our minds and bodies, taking care of the whole community and in turn the one world we have to live in,&#8221; organizer Ohia Thompson said. </p>\n\n\n\n<p>&#8220;This means seeing our interconnectedness and moving forward with a focus on wellbeing, diversity, and sustainability. The Wellness Track this year is just the beginning of a more intentional future for everyone connected to WordPress.”</p>\n\n\n\n<p>Last year the team hosting the event in Porto was <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">called out for a lack of diversity on the organizing team</a>, which performs critical tasks like selecting speakers and managing a speaker support program. In what appears to be an echo back to that controversy, a public interaction on Twitter earlier this month caused community members to question the organizing team.</p>\n\n\n\n<p>WCEU was once again forced to reaffirm its commitment to diversity after Sjoerd Blom, one of the Global organizers, accused StellarWP&#8217;s Director of Community Engagement, Michelle Frechette, of &#8220;being prejudiced&#8221; when she questioned the lack of diversity in the first few rounds of speaker announcements. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Please stop being prejudiced and wait until ALL speakers have been announced. Thanks.</p>&mdash; Sjoerd Blom (@sjblom) <a href=\"https://twitter.com/sjblom/status/1656015637641043968?ref_src=twsrc%5Etfw\">May 9, 2023</a></blockquote>\n</div>\n\n\n\n<p>Blom has since publicly apologized for his response to the criticism this week, reiterating that diversity matters to the team, but only after WCEU received overwhelmingly negative feedback regarding the incident.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">In past weeks, <a href=\"https://twitter.com/michelleames?ref_src=twsrc%5Etfw\">@michelleames</a> highlighted the lack of diversity in WCEU’s speaker line up. I’m truly sorry for the offense I caused, especially in using the word ‘prejudiced’. <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> and I know that diversity matters, and we will be sharing more about what happened in coming days.</p>&mdash; Sjoerd Blom (@sjblom) <a href=\"https://twitter.com/sjblom/status/1659236811456086016?ref_src=twsrc%5Etfw\">May 18, 2023</a></blockquote>\n</div>\n\n\n\n<p>WordCamp Europe has not yet published anything to mitigate the effects of this public altercation but damage control measures are likely in the works, as Blom indicated a more official response will be coming from the team.</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, 19 May 2023 17:23:12 +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:68:\"Do The Woo Community: Do the Woo Friday Show with Michelle Frechette\";s:7:\"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=75166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/do-the-woo-friday-show-with-michelle-frechette/\";s: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:390:\"<p>We have a great conversation of tips and experiences when it comes to speaking at WordPress events. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/do-the-woo-friday-show-with-michelle-frechette/\">Do the Woo Friday Show with Michelle Frechette</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, 19 May 2023 08:01:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s: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:106:\"Post Status: WP 6.2.1 • PHP8 Compatibility • Translation Playground • Contributor Mentorship Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149361\";s:7:\"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:105:\"https://poststatus.com/wp-6-2-1-php8-compatibility-translation-playground-contributor-mentorship-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18457:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 14, 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\">It&#8217;s time to update your WordPress websites now. This week&#8217;s release breaks shortcodes used in Block Themes on Templates, but is related to a security issue. <br /><br />Is WordPress, and the plugin and theme ecosystem around it, ready for PHP 8? Earlier versions of PHP, such as 7.4, are now considered End of Life, and hosts are eager to deploy supported versions. But first, Core compatibility needs additional testing to come out of beta compatibility.<br /><br />Translating WordPress just got a little bit easier for contributors with the WP Translation Playground. <br /><br />A Community team working group announces a pilot proposal for a Contributor Mentorship Program, helping all contributors onboard. </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-ic_people kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2.1, PHP8, Translation Playground, Mentorship Program</h2><p class=\"kt-blocks-info-box-text\"><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/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f418.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5e3.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/polyglots/2023/04/19/wp-translation-playground/\">WP Translation Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"??‍?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a><br /><br /> </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/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\">2022 Annual Survey Results &amp; Next Steps</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/the-month-in-wordpress-april-2023/\">The Month in WordPress – April 2023</a></li>\n\n\n\n<li><a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</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-9\">\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/05/18/accessibility-team-meeting-agenda-may-19-2023/\">Accessibility Team Meeting Agenda: May 19, 2023</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/05/18/meetup-organizer-newsletter-may-2023/\">Meetup Organizer Newsletter: May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/18/announcement-increasing-meetup-venue-support-funds/\">Announcement: Increasing Meetup Venue Support Funds</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/10/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/15/contributor-working-group-mentorship-chat-agenda-may-18th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | May 18th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/11/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-may-10-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on May 10, 2023</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/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\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</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/05/whats-new-for-developers-may-2023/\">What’s new for developers? (May 2023)</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/05/16/dev-chat-agenda-may-17-2023/\">Dev Chat Agenda, May 17, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/editor-chat-agenda-may-17th-2023/\">Editor Chat Agenda: May 17th 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/08/design-share-apr-24-may-5/\">Design Share: Apr 24–May 5</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><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/05/16/agenda-for-docs-team-bi-weekly-meeting-may-16-2023/\">Agenda for Docs Team bi-weekly meeting May 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/05/16/summary-for-docs-team-meeting-may-2-2023/\">Summary for Docs Team meeting, May 2, 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/05/17/hosting-team-meeting-agenda-2023-05-17/\">Hosting Team meeting agenda 2023-05-17</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/16/notes-global-marketing-team-meeting-9-may-2023/\">Notes: Global Marketing Team meeting, 9 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/17/day-10-wp20-from-blogs-to-blocks/\">Day 10: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/15/day-9-wp20-from-blogs-to-blocks/\">Day 9: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/15/day-8-wp20-from-blogs-to-blocks/\">Day 8: #WP20 From Blogs to Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-meta\"><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/05/04/matrix-chat-summary-may-4-2023/\">Matrix chat Summary – May 4, 2023</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/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</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/05/18/catalog-postgres-exploration-effort/\">Catalog Postgres Exploration Effort</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/15/last-week-openverse-2023-05-08-2023-05-15/\">A week in Openverse: 2023-05-08 – 2023-05-15</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/05/16/performance-chat-summary-16-may-2023/\">Performance Chat Summary: 16 May 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/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/09/plugin-review-team-update-8-may-2023/\">Plugin Review Team Update: 8 May 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/04/19/wp-translation-playground/\">WP Translation Playground</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/17/agenda-weekly-polyglots-chat-may-17-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – May 17, 2023 (07:00 UTC)</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/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/19/showcase-content-moderation/\">Revitalizing the Showcase</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/05/agenda-for-may-18th-support-meeting-2/\">Agenda for May 18th Support Meeting</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/05/12/test-chat-summary-9-may-2023/\">Test Chat Summary: 9 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\">FSE Program Front Page Fun Summary</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\">Theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</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/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/09/training-team-meeting-recap-for-may-2nd-2023/\">Training Team Meeting Recap for May 2nd, 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/introduction-to-wordpress-multisite-networks/\">Introduction to WordPress Multisite Networks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-category-templates-with-block-themes/\">Exploring category templates with block themes</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=nesting-blocks-and-advanced-block-layouts\">Nesting blocks and advanced block layouts</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-wordpress-playground-2\">Developer Hours – WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-wordpress-playground\">Developer Hours – WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=create-a-four-page-wordpress-website-2-5-footers\">Create a four page WordPress website #2.5: Footers</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-2\">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/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</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\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://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-04-13-1\"><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</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, 18 May 2023 21:20: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: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: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:99:\"WPTavern: WordPress Is Developing a Command Center for Quick Search and Navigation Inside the Admin\";s:7:\"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=145170\";s:7:\"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:110:\"https://wptavern.com/wordpress-is-developing-a-command-center-for-quick-search-and-navigation-inside-the-admin\";s: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:4455:\"<p>WordPress may soon be getting a Command Center, which would function as a quick search component for navigating to other areas of the admin, and would also be capable of running commands. The feature was <a href=\"https://wptavern.com/gutenberg-15-6-introduces-experimental-details-block-and-command-center-for-site-editor\">introduced in Gutenberg 15.6</a> under the Experimental flag and currently has limited use in the Site Editor context while navigating and editing templates. </p>\n\n\n\n<p>The Command Center project is intended to be expanded to the whole of wp-admin in an extensible way so plugin developers can register their own commands. This would also allow for AI-powered extensions to expedite design, content, and layout creation. </p>\n\n\n\n<p>&#8220;One aspect worth highlighting is the proposed API to interact with the command center,&#8221; Gutenberg engineer Riad Benguella said in <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">a post requesting feedback on the project</a>. &#8220;The command center has been developed as an independent <code>@wordpress/commands</code> package. It offers APIs to render and register commands dynamically. These extension points allow plugins to inject any commands of their liking and opens the door for interactions with LLMs.&#8221;</p>\n\n\n\n<p>Benguella shared a video of the prototype navigating between templates and template parts in the Site Editor:</p>\n\n\n\n\n\n\n\n<p>Feedback so far had been generally positive, but contributors on the project will have the challenge of providing real examples of the Command Center&#8217;s benefits in order for some to fully realize the vision for this feature as more than just a fancy shortcut for power users.</p>\n\n\n\n<p>&#8220;Neat, but I’m unclear what practical problem this actually solves?&#8221; WordPress developer Jon Brown said.</p>\n\n\n\n<p>&#8220;Currently there is a clear easy to find and use drop down at the top center of the editor. Are people really having problems using that? This seems to complicate things where users have to know the names of the items to type them in. Does the average user know to type in &#8216;post meta&#8217; to edit that?</p>\n\n\n\n<p>&#8220;There are couple plugins that have done this admin wide, which again while neat, seems better aimed at power users that already know what they’re looking for.&#8221;</p>\n\n\n\n<p>Benguella responded that the Command Center is being developed as &#8220;a complementary UI tailored specifically for average and power users,&#8221; and that users would not be required to remember technical terms in order to use it.</p>\n\n\n\n<p>Other participants in the conversation asked that contributors consider not releasing the Command Center in WordPress until it can serve contexts beyond just the Site Editor.</p>\n\n\n\n<p>&#8220;Initially we’ve added the command center to both post and site editors but I expect that we’ll be adding to all WP-Admin once we’ve proved its behavior and APIs,&#8221; Benguella responded. The API is currently still in the experimental stage in Gutenberg and it&#8217;s not yet known if expansion to wp-admin would be added before or after the Command Center lands in the next version of WordPress.</p>\n\n\n\n<p>&#8220;Love the concept, hate that it’s limited to the Editor,&#8221; WordPress developer Dovid Levine said.</p>\n\n\n\n<p>&#8220;This would ideally be implemented holistically – either as part of a push to modernize the long-neglected dashboard or API efforts to interact with GB data outside of the Editor. We’ve seen how slow developer adoption is when done the other way (GB first/only) – and worse, how painful it is for the early adopters/advocates if/when considerations beyond the Editor are finally taken into account.&#8221;</p>\n\n\n\n<p>The first milestone, powering quick search for content and templates in the editor, is <a href=\"https://github.com/WordPress/gutenberg/issues/48457\">outlined on GitHub</a> where contributors can track the progress. The Command Center will also be tested in the future as part of the FSE Outreach Program. Benguella is <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">requesting feedback</a> on the feature and its API on the post published to the core dev blog, specifically regarding the user experience and whether the APIs detailed in the post are capable enough to address third-party use cases.</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, 18 May 2023 21:13: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: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:133:\"WPTavern: WordPress’ 20th Anniversary, a Mini Series. Episode 1 With Sarah Gooding, Aurooba Ahmed, Masestro Stevens and Jess Frick.\";s:7:\"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=145021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://wptavern.com/podcast/wordpress-20th-anniversary-a-mini-series-episode-1-with-sarah-gooding-aurooba-ahmed-masestro-stevens-and-jess-frick\";s: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:102000:\"Transcript<div>\n<p>Nathan Wrigley: 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 20th anniversary of WordPress.</p>\n\n\n\n<p>Today is a little bit of a departure for the podcast. It&#8217;s an episode all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Sarah Gooding, Aurooba Ahmed, Masestro Stevens and Jess Frick, with David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover many topics, and it&#8217;s great to hear so many varied opinions about what&#8217;s been of importance in the evolution of WordPress.</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, David Bisset, Sarah Gooding, Aurooba Ahmed, Masestro Stevens, and Jess Frick. </p>\n\n\n\n<p>David Bisset: Well, welcome everyone. Uh, thanks for coming. This is the one of a few podcasts to celebrate the 20th anniversary birthday, christening, whatever it is you want to call it, of WordPress. Uh, yes. 20 years old. That&#8217;s it&#8217;s, it&#8217;s just barely attending college at this point. Isn&#8217;t that great? We have four sweet people with me here that I wanna introduce tonight.</p>\n\n\n\n<p>We are going to do a, kind of like a news draft. So we are going to pick the favorite WordPress moments of a couple of categories, and we are going to pick them so that if, um, So if somebody picks something that, that, that the another person had on their list, that person that comes after them is gonna pick something different.</p>\n\n\n\n<p>So you&#8217;re gonna hear unique things coming out of every one of our guests this evening. So let&#8217;s, let&#8217;s start our introductions. By the way, random.org picked our, picked the order. This is going in so that I am not playing favorites. Aruba, you are first on our panel. Tell us about yourself. Hi everyone.</p>\n\n\n\n<p>Aurooba Ahmed: I&#8217;m excited to be here with all these lovely people.</p>\n\n\n\n<p>I&#8217;m Aruba, I&#8217;m a WordPress developer. I build plug-ins, websites, all that kind of good stuff. And I&#8217;m up here in, uh, by the Rockies in Calgary, Canada,</p>\n\n\n\n<p>David Bisset: the Rockies. All right. Next on our list is Sarah Gooding. Hello, Sarah. How you doing?</p>\n\n\n\n<p>Sarah Gooding: Hi, David. Thanks for inviting me. Um, I&#8217;m Sarah Gooding. I&#8217;m the editor at WP Tavern.</p>\n\n\n\n<p>I&#8217;ve been there, it will be 10 years in September. Um, I live in Florida. I moved there two years ago, um, during the pandemic when my husband&#8217;s job changed and we moved down here and yeah, still love WordPress. After 20 years</p>\n\n\n\n<p>David Bisset: you&#8217;re well working. Yeah. You know what, um, Aruba, how long, when did you first, uh, get into WordPress?</p>\n\n\n\n<p>Aurooba Ahmed: Um, I would, I think it was 20, it was 2008 or 2009.</p>\n\n\n\n<p>David Bisset: Okay. So about, about the same time as me. So I don&#8217;t know, somebody will do the math in the second. Sarah, how about you?</p>\n\n\n\n<p>Sarah Gooding: I think it was around 2006 for me, but that was maybe just like trying it out. Okay. So like, um, when I started working in WordPress, it was 2008, 2009, so that&#8217;s when I started in years.</p>\n\n\n\n<p>Yeah. Making websites for clients and. Things like that.</p>\n\n\n\n<p>David Bisset: So, uh, yeah. So like, so Jess, you are up next. Can you tell us in your introduction to how long, at the end, how long you&#8217;ve been with WordPress? Absolutely.</p>\n\n\n\n<p>Jess Frick: Uh, I&#8217;m Jess Frick. Thank you for having me, David. Um, I am director of operations for Pressable, and I have been playing with WordPress since 2008, working professionally in it since 2010.</p>\n\n\n\n<p>David Bisset: Wow. It&#8217;s 2010, so we are, so it&#8217;s the oldest I, I&#8217;m per, well, I&#8217;ll introduce myself a second. Maestro. Yeah, you&#8217;re up, you&#8217;re, you&#8217;re, you&#8217;re fourth, uh, in the order. It&#8217;s chosen by random.org. So why don&#8217;t you introduce yourself, sir.</p>\n\n\n\n<p>Maestro Stevens: This is random.org that you keep pointing to.</p>\n\n\n\n<p>David Bisset: Yes, I am not. Thank you, David.</p>\n\n\n\n<p>Maestro Stevens: Yeah. Uh, my name is Maro Stevens. Um, I guess I am the preemie, the youngest person on this panel when it comes to WordPress. I started my, um, Uh, WordPress Journal in 2018.</p>\n\n\n\n<p>David Bisset: Maestro, can you put yourself a little bit closer to the mic?</p>\n\n\n\n<p>Can you hear me? Can you hear me better now?</p>\n\n\n\n<p>A little bit better, right? Guys?</p>\n\n\n\n<p>Girls? Mm-hmm. People. Humans. Yes. Okay, go ahead, Maestro. I&#8217;m sorry. So, yes,</p>\n\n\n\n<p>Maestro Stevens: I started in 2018. Um, so I guess I&#8217;m the youngest person on the panel when it comes to WordPress and uh, I&#8217;m an agency owner of the Iconic Expressions.</p>\n\n\n\n<p>David Bisset: Great. Well, yes, young, young Whippers now, but, but that, that does give us a perspective though, cuz us old timers like to, like, to remember the, the good old days.</p>\n\n\n\n<p>So we need, we need some young blood. Um, so let, oh, that makes me fifth in the, in the rotation. In case you don&#8217;t know me, um, consider yourself very fortunate, but for those who may want to learn more about me, I&#8217;m David Bisset um, I&#8217;ve been worth, I think I&#8217;ve been with WordPress since about 2006 or 2007 ish.</p>\n\n\n\n<p>Um, 2008 is when I founded with some help. Where? Camp Miami. So I was with about WordPress for about a year and a half prior to that. So that&#8217;s kind of like how I do the math. Uh, I currently work at Awesome Automotive. I currently had a project, uh, WP Charitable, um, which was required by Awesome Automotive last year, but it&#8217;s a, but for the longest time I have been a freelancer.</p>\n\n\n\n<p>I&#8217;ve been a employee, uh, employee and owner of a number of companies. Um, also a member of, uh, uh, post status. So I&#8217;ve been doing, I do, I&#8217;ve done a whole bunch of things. So that is our panel for this evening. Um, so why don&#8217;t we get started? And again, we are looking at the last 20 years of WordPress. So when, so that is certainly a lot of history to cover.</p>\n\n\n\n<p>And of course some of you are gonna be aiming for certain years and others will be aiming for others. So I&#8217;m gonna be very surprised tonight if any of us snags someone else&#8217;s picks in terms of news. And what we have this evening is that we actually have three categories that we are going to try to cover this evening.</p>\n\n\n\n<p>And, um, I kind of, I usually don&#8217;t like to give categories or, or, or themes per round. If we have time after these three, we&#8217;re gonna do arou, uh, I&#8217;ll bring out your dead or, or, or whatever is left in our pockets type of a thing. But I thought with 20 years of WordPress, That is so, um, that is so broad to cover that I, it was almost impossible probably to, I wanted to make it a little bit competitive, so I kind of narrowed little things down to at least three categories.</p>\n\n\n\n<p>So the first category that we&#8217;re gonna cover is a, a memorable WordPress release or something within a WordPress release, any WordPress release. Then that was our first thing that we wanted to cover. So, Aruba, let&#8217;s start with you, um, category WordPress releases. So what, what was your pick for your memorable WordPress release in the last 20 years?</p>\n\n\n\n<p>Aurooba Ahmed: That would be Thelonious WordPress 3.0, which was really the first WordPress release that I paid attention to when I first started using WordPress. And it made a big splash in the world of blogging. I remember there was this really big blog called A Beautiful Mess. They came out with this course called Blog Love Design, and it was all about like using the new 2010 theme, which is when those, you know, 2010, those style of theming for default themes started.</p>\n\n\n\n<p>Oh. And using that to customize it and uh, create something really cool and you could now create custom menus for the very first time. And multi-site was merged. I mean, it was a really, really intense release that paved the way for a lot of what we think of WordPress, like core default. Of course WordPress has this sort of features, you know, but before that it didn&#8217;t have them.</p>\n\n\n\n<p>David Bisset: I totally forgot about multi, uh, multi-site. Um, and I, and I didn&#8217;t know that three cuz remember prior to that, um, it was two separate products, which was kind of weird. Yeah. Right. If you wanted WordPress, it&#8217;s weird, you wanted to download WordPress, fine. But if you wanted to download WordPress M U.</p>\n\n\n\n<p>That was a separate download</p>\n\n\n\n<p>Aurooba Ahmed: and it was like a whole thing to try to set it up. And with WordPress 3.0 it became a lot easier to make the switch if you ever wanted to turn a single site installation. It&#8217;s, it was still a process, but way easier with WordPress 3.0.</p>\n\n\n\n<p>David Bisset: Who remembers, who remembers WordPress when that came out?</p>\n\n\n\n<p>Jess?</p>\n\n\n\n<p>Jess Frick: Oh yeah. Aruba skunked me on the first one.</p>\n\n\n\n<p>David Bisset: Oh really? Yes. You got sniped. Really? You were gonna pick three? Pick 3.0 Wow.</p>\n\n\n\n<p>Jess Frick: It&#8217;s literally the first one on my list.</p>\n\n\n\n<p>Aurooba Ahmed: Oh. Milestone release. Yes.</p>\n\n\n\n<p>Jess Frick: Incredible taste</p>\n\n\n\n<p>David Bisset: and, and a nice round number too, which for WordPress you can&#8217;t always guarantee. Right now there&#8217;s another round number that I&#8217;m not gonna talk about that, that&#8217;s probably pretty significant too, but, okay.</p>\n\n\n\n<p>So Aruba Robot, WordPress 3.0 is your, is your first pick what in a snipe right out of the gate. So congratulations on that. Alright, so Sarah, you&#8217;re up next, me and, um, your memorable WordPress release.</p>\n\n\n\n<p>Sarah Gooding: I think probably one of the most memorable ones for me was 5.0</p>\n\n\n\n<p>David Bisset: and that&#8217;s the other one.</p>\n\n\n\n<p>Sarah Gooding: Yeah. Um, 5.0 is such a, a big release.</p>\n\n\n\n<p>Um, Especially leading up to it, all the agencies and freelancers are trying to get their themes and plugins ready so that they&#8217;d be ready to go with the, you know, with the latest and greatest that WordPress had to offer. And it was such a, it was a big leap. Um, and then the, the timing of the release was like right at WordCamp us, and I think it missed some of its, its dates and so they had previously identified, um, like, if we missed this date, we&#8217;re gonna push it to January so that we&#8217;re not doing the release while everyone&#8217;s traveling.</p>\n\n\n\n<p>But then, um, Matt switched it, I guess at the last minute. He&#8217;s like, no, we&#8217;re going for it. And yeah, there was this up, there was just, you know, a, a huge outcry with, you know, people who were frustrated and they&#8217;re like, why do we have to push it so hard? And it was just, it was like, It was like giving birth.</p>\n\n\n\n<p>I think, you know, it was, you&#8217;re, you&#8217;re just going through this process and it was, of course, it&#8217;s gonna be difficult at times. And, you know, eventually everybody&#8217;s on board and everyone&#8217;s working together, um, releasing their tutorials, their open source stuff to help people, you know, get on board with the block editor because it was, it&#8217;s probably the, the largest technical leap that our communities had to navigate of, of all time, I think I would say.</p>\n\n\n\n<p>And, um, it was an exci, it was really exciting time. I mean, I was, every day there was, there were articles to write about what people were thinking and feeling at the time, and there was a lot of frustration, but also it was, uh, it was just something that needed to happen because our editor had been, had been looking dated for so long and we needed to make that big jump.</p>\n\n\n\n<p>So I think that&#8217;s probably one of the most reme memorable ones for me in, in recent memory.</p>\n\n\n\n<p>David Bisset: Yeah. I&#8217;m gonna go on, on a limb. For me personally, say that was probably the most controversial WordPress release. Period. Yes. I, I worked for a plug-in company at the time and I was literally making changes to our plug-ins release to get into the repo in the ho in my hotel room.</p>\n\n\n\n<p>So I&#8217;ll just kinda leave it at that in terms of how much stress that, uh, and I think a lot of people were doing pretty much the same thing. So I have to say that I think, uh, the number one most stressful word press release was for me, 5.0. Uh, I can&#8217;t imagine it was probably stressful for Matt and everyone else too.</p>\n\n\n\n<p>Most controversial though, I think, at the very least for, for that. And I think it&#8217;s still 5.0 down to this day. You just remember the, the nu the version numbers just branded into the My brain, so 5.0. All right. Great. So now it&#8217;s gonna get interesting. Sarah. Swipe my number two. So Jess, um, can you think of a enough it literal second one.</p>\n\n\n\n<p>Poor Jess.</p>\n\n\n\n<p>Jess Frick: I just wanna say though, for, you know, WordPress three, what was cool was the, the editor changed. Mm-hmm. And that was what made me go full-time and WordPress. That&#8217;s when it started to be pretty enough for me to play with it. Purdy. And then it was pretty though, and it got prettier. Um, I have a note here that it was 3.7 when WordPress became the most popular CMS in the world,</p>\n\n\n\n<p>David Bisset: huh? Accord, according to Matt,</p>\n\n\n\n<p>Jess Frick: uh, according to WordPress history.</p>\n\n\n\n<p>David Bisset: Okay, that&#8217;s fine.</p>\n\n\n\n<p>Jess Frick: Um, I think it was built with, it was through, built with. I&#8217;ll take</p>\n\n\n\n<p>David Bisset: their word for it.</p>\n\n\n\n<p>Jess Frick: I&#8217;ll find the link for you for the show notes. But yeah, that, I thought that was significant because that was just when I feel like the entire editing experience changed.</p>\n\n\n\n<p>Um, But then also agreed for WordPress five. Um, I remember, uh, WP 1 0 1 was one of the big sponsors, and they pulled out of the show because they had to redo all their videos.</p>\n\n\n\n<p>Sarah Gooding: It was, it was chaos.</p>\n\n\n\n<p>David Bisset: So, to be clear though, yes. Are you picking which WordPress version are you picking? Or have you</p>\n\n\n\n<p>Jess Frick: Well, they, those were my two.</p>\n\n\n\n<p>David Bisset: Oh, those were you too. Okay. I&#8217;m sorry.</p>\n\n\n\n<p>Jess Frick: Talking points, but since I can&#8217;t pick either of those, I&#8217;m gonna say the first all women and non-binary release of 5.6. Ah,</p>\n\n\n\n<p>David Bisset: okay.</p>\n\n\n\n<p>Jess Frick: That I feel like we&#8217;ve got another one coming up too.</p>\n\n\n\n<p>David Bisset: Mm-hmm. Yes. We can&#8217;t talk about the future.</p>\n\n\n\n<p>Jess Frick: That&#8217;s, I know we&#8217;re, we&#8217;re looking</p>\n\n\n\n<p>back right now.</p>\n\n\n\n<p>We&#8217;re just looking back.</p>\n\n\n\n<p>David Bisset: Yeah. So WordPress 5.5 0.6 was a major milestone too. In terms of, in terms of that. And I think it&#8217;s set, set pretty much a, an example of how those are going to roll in the future. Like we have a second one coming up. Um, did anybody here participate in that? No. Okay. Kind of, well, we kind, we were rooting for the side, but there was, there was so much diversity in that release.</p>\n\n\n\n<p>I was, I was very glad to see that, not, not purely from a diversity angle, but as much as just there was excitement and contribution in general because of that. Yeah. And the more that you can expose contribution in general, I think the better off the WordPress project is even when we quote unquote went back to, after that, we went back to, I, for lack of a better word, a normal release or a, a standard release theme, which is no theme at all.</p>\n\n\n\n<p>It&#8217;s, it&#8217;s basically, I went say hand. So Jess 5.6, excellent choice. Maestro, we come down to you. I, I I, I w I&#8217;m very interested to hear what your pick&#8217;s gonna be cuz this, these were the top three I could think of off the top of my head. But, uh, go ahead. I haven&#8217;t been sniped officially, but, uh, because I knew there were gonna be people that picked it anyway.</p>\n\n\n\n<p>But Maestro, what is your favorite, or what is the most memorable WordPress release for you?</p>\n\n\n\n<p>Maestro Stevens: I feel like I just got sniped right now. Um, two times. Uh, Jessica hit one on the head, um, and you kind of was alluding to one, but I&#8217;m gonna go with 5.5. If we gonna go with points. Let&#8217;s go with the point system.</p>\n\n\n\n<p>I&#8217;m going with 5.5.</p>\n\n\n\n<p>David Bisset: Okay. Um, that, that&#8217;s a, that&#8217;s a release. Points of releases.</p>\n\n\n\n<p>Maestro Stevens: Points of releases, right? The point of release. Yeah. So, oh, I&#8217;m gonna take a different direction and go with 5.5 because it was, it was a release that I felt affected a lot of people&#8217;s reason for, you know, being, uh, hired or paid for maintenance because it involved auto updates and once that came out it screwed up a whole bunch of people&#8217;s, you know, um, source of income or reasoning or opportunities because I know there was a lot of resistance and pushback when people were saying, well, I don&#8217;t need you anymore cuz I can auto update my own site.</p>\n\n\n\n<p>So, um, that&#8217;s what I would say was one of the biggest ones for me.</p>\n\n\n\n<p>David Bisset: I, I actually had someone who went along that same path, but fortunately they used, they used bad plugins, so they&#8217;re, so they turned those auto updates off pretty quick. It actually reminded me, and I don&#8217;t know what version to this is off the top of my head, but I remember when auto updating WordPress itself was a big controversy.</p>\n\n\n\n<p>Um, and I don&#8217;t, I&#8217;ll figure it out what the version that was, but I remember na for you, for those of you who may remember Nathan, he&#8217;s still with us. He&#8217;s just not with the WordPress project anymore. Directly for over like a year and a half explaining the concept of WordPress auto updating on major versions.</p>\n\n\n\n<p>There was a lot of. Controversy, um, pushback a little bit in terms of do we want to auto update this much of the web? So I, so I can understand that for plugins, right? You know, I, you know, it&#8217;s, I think it&#8217;s taken time because people paid for WordPress updates too. Like, they&#8217;ll just say, Hey, can you just update?</p>\n\n\n\n<p>And, you know, they would probably update the plugins at the same time. So, yeah. But you know what, I think in this day and age, there comes a time to evolve. I don&#8217;t think, I think auto updates aren&#8217;t on many sites for very good reasons, especially probably governmental and educational sites. But 5.6 auto updates did cause a blip in the timeline, right?</p>\n\n\n\n<p>So that&#8217;s a good choice. I think that&#8217;s pretty good. And I totally actually forgot about that.</p>\n\n\n\n<p>Aurooba Ahmed: So I, it was WordPress 3.7 when WordPress could auto update.</p>\n\n\n\n<p>David Bisset: See that? That to me would&#8217;ve been my second choice because it&#8217;s now, now, now it&#8217;s, I guess it comes down to me, my turn. Um, that would&#8217;ve been my second choice because I remember going to so many conferences going to the conference in Arizona, that name, now I&#8217;ve Page Lee conference and I&#8217;m forgetting in the loop.</p>\n\n\n\n<p>No, no, it&#8217;s, although they think they talked about it there as well, but, um, yeah, I&#8217;ll think of it in a second. I&#8217;m just drawing a blank. Uh, it&#8217;s, it was PressNomics. PressNomics. There you go. Um, I think it was PressNomics, but I do remember attending a couple of conferences and Nas was there on stage or something, trying to explain how they have been talking to a whole bunch of people about WordPress updates and auto updates and people were scared, so, uh, not scared, concerned, whatever word you wanna throw at it.</p>\n\n\n\n<p>And everything&#8217;s fine now. So the plugin thing is gonna stray now, but, Because remember, I&#8217;ve been with WordPress a long time. I noticed no one went back to the one point WordPress releases. So I&#8217;m going to pick WordPress 1.5, which which came out in February, 2005. That release came with pages, comment, moderation, tools, and Kubrick.</p>\n\n\n\n<p>Does anybody remember Kubrick? Maestro? You probably don&#8217;t. That&#8217;s okay. But Kubrick.</p>\n\n\n\n<p>Maestro Stevens: Stanley Kubrick. Stanley Kubrick, or</p>\n\n\n\n<p>David Bisset: the theme was named after him, but Google Kubrick and turn on Google images and you&#8217;ll see a blue. What the internet basically looked like in terms of blogs for like, for like seven years, cuz everybody was using Kubrick.</p>\n\n\n\n<p>Um, when WordPress came out, this was before like the two thou, the, the, the year themes came out. You&#8217;ll see it, you&#8217;ll see it. Um, it, not only that, but it also came with a new theme system. That&#8217;s when WordPress themes came out in WordPress, 4.1 0.5. And Matt announced themes with these words. And I quote in WordPress 1.5, we&#8217;ve created an incredibly flexible theme system that adapts to you rather than you expecting to adapt from it.</p>\n\n\n\n<p>You can have your entire web log. Remember those words, run through a single file just like before, or you can literally have a different template for every single different category. How far we have come from a site editor today, from to February, 2005 when WordPress 1.5 came out. I mean, for me, Paige&#8217;s was.</p>\n\n\n\n<p>The biggest deal, um, because I, and this is the version by the way, that I actually jumped on board WordPress full-time with, was WordPress 1.5. Um, coincidentally because I think prior to that I was trying, I was just at the point when trying out other brow browsers, it was movable type. There was PHP, nuke, I forget what else was out there, but like, I needed something, but I didn&#8217;t need a blog.</p>\n\n\n\n<p>I needed something to build a client&#8217;s website with. And you really couldn&#8217;t do that without pages. So when 1.5 came out, pages was the chef&#8217;s kiss back then, really young chef&#8217;s kiss back then. So anyway, my pick is WordPress 1.5, so that was round one. A little bit of more, uh, sniping than I thought was was gonna happen.</p>\n\n\n\n<p>But let&#8217;s go ahead and just not waste time and moved around. Two, our round two category that, uh, we picked out was, um, I think most memorable WordCamp. So just to clarify this for the audience, um, this could have been a work camp experience or it could have been the, the work camp itself. Maybe, maybe the atmosphere around it, the community around it, whatever.</p>\n\n\n\n<p>Um, as long as it was a memorable, your, your most favorite WordCamp. Memorable experience. So, Aruba, we&#8217;re gonna start with you on this. Sure. And if anybody gets sniped on this, I&#8217;ll be blown away. But go ahead, Ruba. You go ahead. Start.</p>\n\n\n\n<p>Aurooba Ahmed: Okay. I&#8217;m not sniping anyone with this one. I&#8217;m pretty sure. No, I&#8217;m like a hundred percent sure it would be word pit.</p>\n\n\n\n<p>WordCamp Calgary. So my hometown&#8217;s WordCamp in 2016, which was the very first time I spoke at a WordCamp. And it was also the first time I realized that WordPress was more than just software. There was this whole community around it. And the vibe was, I. Like it was more about more than just code. There was a lot more going on underneath the surface that you might not know unless you are participating in these kind of community events.</p>\n\n\n\n<p>Um, and I feel like, and it could just be because that&#8217;s when I entered the time, but that&#8217;s when community efforts really started to become more of a thing in WordPress world. You know? Uh, I think work, the first WordCamp US was just like a year before that and, you know, things were starting to gain steam.</p>\n\n\n\n<p>So for me that was a very, very memorable time, very personally. And if it wasn&#8217;t for that WordCamp, I don&#8217;t even know if I would be here in on this podcast. So yeah.</p>\n\n\n\n<p>David Bisset: I&#8217;m looking at the 2016. It&#8217;s, the theme was make period WordPress, period. It&#8217;s sing period. That was the theme of the camp. Mm-hmm.</p>\n\n\n\n<p>Aurooba Ahmed: Because our Calgary theme for that year was music.</p>\n\n\n\n<p>Okay. We had a city theme going on that year for a lot of stuff. And so the WordCamp, um, sort of theme sort of fed into that as well.</p>\n\n\n\n<p>David Bisset: Make sure to include all, make sure when you provide me the links for all your items to include the mm-hmm. URL to the work camps. I&#8217;m assuming that, assuming that there&#8217;s still exist, this one does, uh, work camp, work camp, uh, websites were so, so straightforward and simple back in 2016, which Oh yes, is really, to me, that&#8217;s not that far.</p>\n\n\n\n<p>That&#8217;s not that far ago. I&#8217;m getting old. It was a two day event on May 28th and May 29th, 2016. And this was your first, I didn&#8217;t even have a avatar.</p>\n\n\n\n<p>Aurooba Ahmed: I didn&#8217;t even have a avatar at the time.</p>\n\n\n\n<p>David Bisset: Do you remember your talk? They don&#8217;t have your gra Yeah. Your avatars missing. Yeah. Do you remember your talk?</p>\n\n\n\n<p>Aurooba Ahmed: Yeah.</p>\n\n\n\n<p>At the time, uh, it was, I think it was on theme development using Git. So like how to push your theme from your local environment to your hosting environment. But with just git, you know, deployment was not like a very sophisticated thing in the WordPress land at that time. Um, and I was using get hooks to create this sort of custom workflow so you could like push everything up.</p>\n\n\n\n<p>And that&#8217;s what I did my little talk on.</p>\n\n\n\n<p>David Bisset: Yes. It took a while to find it because shame on them. They&#8217;re schedules are graphics on the WordCamp website, so I couldn&#8217;t search through text. They&#8217;re JPEGs, so yes. Shame on you. Yes, they&#8217;re shame on you. All right, so hey, we were learning, we were learning. Moving, moving, moving on here before anything Sarah.</p>\n\n\n\n<p>So what is your, Sarah, what is your. Best or most memorable Word, camp moment or work workout? No.</p>\n\n\n\n<p>Sarah Gooding: Does this, this include, does this include WordCamp announcements or just like major announcements that were done at WordCamps? Or does, or is it just meant to be your favorite?</p>\n\n\n\n<p>David Bisset: Most memorable. Most memorable to you.</p>\n\n\n\n<p>And some people can take that is, I was there when this historic thing happened, or, you know, something personal to you. Now keep in mind our, what our next round will be, which I won&#8217;t spoil. So if it&#8217;s more closely related to that, then that&#8217;s the only thing maybe. But you know, I&#8217;m putting you on the spot here, I realize.</p>\n\n\n\n<p>So just go ahead and share. As long as it&#8217;s, um, legit, legit work camp event. I, uh, event of some sort.</p>\n\n\n\n<p>Sarah Gooding: My first WordCamp was WordCamp Vancouver in I think 2012. And I was a speaker there. It was a, it was also a buddy camp. And so I was speaking about Buddy Press and I think I talked about like how you could add little jQuery animations to make it cooler.</p>\n\n\n\n<p>And I hardly, I can hardly remember because I was so hungover. Um, oh,</p>\n\n\n\n<p>David Bisset: I just, oh, what year was this? What was the year was this year? This was 2012. Oh, so this was before the ch before the child.</p>\n\n\n\n<p>Sarah Gooding: Oh yeah, before I had kids. And then I think the next year was Buddy Camp Miami or was that 2014?</p>\n\n\n\n<p>David Bisset: Oh, don&#8217;t, don&#8217;t even get me started.</p>\n\n\n\n<p>Sarah Gooding: And I brought my dog to that WordCamp and it was my first time in Miami and somebody offered me like a hundred thousand dollars from my dog, or they offered my husband and he wanted to say yes and, but he knew that I&#8217;d be so angry.</p>\n\n\n\n<p>David Bisset: Um, I can see why that one came in second place though.</p>\n\n\n\n<p>Sarah Gooding: Yes, buddy Camps were my first entrance into Ward Camps and those were the ones that I tried to make it do and, um, really enjoyed the most.</p>\n\n\n\n<p>Meeting all the people I&#8217;d met through, uh, buddy Press and in the forums and contributing and I miss. And, uh, those were very memorable for me.</p>\n\n\n\n<p>David Bisset: I miss Buddy Camps, so if anybody who doesn&#8217;t know what a Buddy Camp is, is basically like a conference within a conference for Buddy Press. If you don&#8217;t know what Buddy Press is, go to buddy press.org.</p>\n\n\n\n<p>But it&#8217;s software that&#8217;s still maintained by, officially by Automatic. It is a social platform. It is the sister project. I, I&#8217;ve always considered it&#8217;s sister project of BB Press, which is a form plugin, but we don&#8217;t go into that. But yes, we did. I forget we had for one or two years Buddy Camps in Miami too, but Vancouver 2012 where Sarah gave her first talk, can&#8217;t remember it cuz the brain cells are destroyed, so she&#8217;ll, we&#8217;ll have to take her word for it.</p>\n\n\n\n<p>That&#8217;s great. That&#8217;s, I always like it. What was, what was your favorite WordCamp? The one I can&#8217;t remember. Dude, well, I</p>\n\n\n\n<p>Sarah Gooding: remember, I</p>\n\n\n\n<p>David Bisset: remember it, but alcohol poisoning here.</p>\n\n\n\n<p>Sarah Gooding: I met so many people there for the first time I met Matt Mullenweg, j Tripp, and you know, like there were a bunch of lead developers there just back then, like not, you know, the work camps weren&#8217;t huge.</p>\n\n\n\n<p>They were really small and it was exciting to, you know, meet the people who were working on WordPress. For real.</p>\n\n\n\n<p>David Bisset: Yeah. Back then, the WordCamps were so few and far between when you went to one, chances are most of the core contributors we&#8217;d be there. You know, it was because we had to travel. Um, and the website is just as does still exist, October 13th, 2012, 8:00 AM to 5:00 PM at a, at Barnaby campus, Bernabee campus.</p>\n\n\n\n<p>However, and by the way, when, when, if you&#8217;re listening to this, go look at these, um, old work camp websites, links that we&#8217;re sharing because you want, I&#8217;ll, you&#8217;ll get a kick of the people that we&#8217;re sponsoring them too. And their logos, if they still exist today, you get to see their old logos and if they don&#8217;t exist, you get to see who was uh, sponsoring work camps back in 2012.</p>\n\n\n\n<p>So, Sarah. Yeah. Work Camp Vancouver gets my thumbs up because it&#8217;s got a buddy camp attached with it. Eventually we will get to a work camp in the us. So Jess Jessica, is that gonna be you? It&#8217;s gonna be me. Okay. We&#8217;re, what were camp is most memorable to you.</p>\n\n\n\n<p>Jess Frick: So I actually went outside the box on this cuz I didn&#8217;t know how it was gonna play out.</p>\n\n\n\n<p>And so I&#8217;m coming at it from a different side. Favorite themes and the swag that got away. Favorite themes? Hmm. Favorite themes. I absolutely loved WordCamp Orlando. I&#8217;m a fellow Florida in here, Uhhuh. Um, I absolutely loved WordCamp Orlando 2015, which was Harry Potter.</p>\n\n\n\n<p>And then 2018 was space with nasa.</p>\n\n\n\n<p>Cool. So, yeah, definitely my favorite word, camp themes. But then the swag that got away, I wanna honor you, David. It was those WordCamp Miami lunch boxes.</p>\n\n\n\n<p>David Bisset: Oh, wait a minute. Wait a minute.</p>\n\n\n\n<p>Jess Frick: Oh no, you&#8217;re gonna tease me with it.</p>\n\n\n\n<p>David Bisset: I&#8217;m telling, find it in a second now. You see, I&#8217;ll find it in a</p>\n\n\n\n<p>Jess Frick: second. All the cool swag everybody has.</p>\n\n\n\n<p>And those were the ones that I was like,</p>\n\n\n\n<p>Aurooba Ahmed: oh, I don&#8217;t know where,</p>\n\n\n\n<p>David Bisset: where they&#8217;re within or where somewhere. Yeah, I, I will put a link, I&#8217;ll put a link in the show notes, but I&#8217;ll send it to you. I, we actually have a, um, I have a picture of them on my old blog. Um, so if anybody&#8217;s wasn&#8217;t aware, so I&#8217;m, I&#8217;m confused.</p>\n\n\n\n<p>So the Harry Potter one is the, is the one you want, right? Is is your pick. Right. But you&#8217;re</p>\n\n\n\n<p>Jess Frick: Well for theme,</p>\n\n\n\n<p>David Bisset: for themed. Oh.</p>\n\n\n\n<p>Jess Frick: For theme the way that you, you know, cuz most of the WordCamps will have like a cool theme. And so obviously I&#8217;ve gotta stick with my hometown glory and go, you know, Harry Potter versus NASA Thai.</p>\n\n\n\n<p>Um, but for the swag that got away, definitely WordCamp Miami.</p>\n\n\n\n<p>David Bisset: We had an eighties theme that year. That&#8217;s why the lunch boxes Yes. It back you. I&#8217;ll see it, I&#8217;ll see it in a second.</p>\n\n\n\n<p>Jess Frick: Um, it was like a Miami Vice thing, right?</p>\n\n\n\n<p>David Bisset: Yes. There were multiple lunch boxes, so it depended on what you saw. We, we kind of put a lot of, um, not to turn this into Work Camp Miami discussion, but we put a lot of Easter eggs into our work camps.</p>\n\n\n\n<p>So if we have a theme, it&#8217;s like, if you didn&#8217;t see the one sponsored poster of the Breakfast Club, then you. Didn&#8217;t you, you wouldn&#8217;t have known about it, and it was just special for that. But yes, so I, you know, we can only pick one. So I&#8217;m putting you down for Orlando 2015, but I&#8217;m very honored that your, that your backup, that your second place was WordCamp Miami. I&#8217;m, ooh, where? Camp Miami. What year was that? I like to say it was 2018. It was 2018 was it? I think for our 10th year. Um, yeah, but I was supposed to be there and I wasn&#8217;t. All right. Well, Maestro, uh, so far nobody&#8217;s hopefully taken your picks. So, um, what would, what WordCamp would you put up as your, as the one that you, uh, remember fondly of?</p>\n\n\n\n<p>Oh, wait, we can&#8217;t hear you.</p>\n\n\n\n<p>Maestro Stevens: Since I never technically attended a WordCamp. Um,</p>\n\n\n\n<p>David Bisset: not even virtually.</p>\n\n\n\n<p>Maestro Stevens: So I spoke at Work camps virtually in 2021, but I didn&#8217;t attend work camp as a attendee.</p>\n\n\n\n<p>David Bisset: Were you a ghost?</p>\n\n\n\n<p>Maestro Stevens: But I&#8217;m gonna take it to the left a little bit. Um, I would say no, I was not a ghost.</p>\n\n\n\n<p>David Bisset: Okay. But you attend if you spoke, you attended?</p>\n\n\n\n<p>Yeah. You just didn&#8217;t physically attend?</p>\n\n\n\n<p>Maestro Stevens: I didn&#8217;t physically attend cuz that was the year that we had to virtually attend. So, um, yeah, uh, it</p>\n\n\n\n<p>David Bisset: was north. Oh, so it&#8217;s a seance you attended, I mean, you, you were there?</p>\n\n\n\n<p>Maestro Stevens: Yes. Yeah. Yes. Uh, attended, um, Northeast Ohio work camp in 2021. So, and what I mean by attendance, I&#8217;m talking about like, I didn&#8217;t just go there to go or attend, I was speaking, so that was the big part of my attendance versus just going to a world camp as an attendee, if that makes sense.</p>\n\n\n\n<p>David Bisset: So that&#8217;s the one who stood out. What was your talk on?</p>\n\n\n\n<p>Maestro Stevens: Uh, my talk for 2021 was, um, five. Look at my notes here. It was, uh, about modern marketing for, uh, minority and underrepresented businesses using WordPress.</p>\n\n\n\n<p>David Bisset: And was that the first one you physically attended? The one you spoke on? Virtually? Virtually.</p>\n\n\n\n<p>I&#8217;m sorry. Virtually, yes. I&#8217;m sorry. I&#8217;m getting my, see, that&#8217;s why my blood sugar&#8217;s low. I&#8217;m, I&#8217;m, I&#8217;m fasting right now and my doctor said as it wasn&#8217;t a good idea to come on a podcast while that was going on, so forgive me, but how did you speak at any virtually, have you spoken virtually before at anything before that?</p>\n\n\n\n<p>Maestro Stevens: Never. Never a WordPress specific, uh, topic based scenario, but other things I had, yes.</p>\n\n\n\n<p>David Bisset: Okay, so you did, so it wasn&#8217;t your first real, it wasn&#8217;t your first rodeo. Just a just a little bit different speaking in front of a different audience though.</p>\n\n\n\n<p>Maestro Stevens: So prior to then, so I&#8217;m 36 years old. I feel like I gotta put this out here.</p>\n\n\n\n<p>I feel like I don&#8217;t judge, I&#8217;m real young here. Like you, you try to call me out with the Stanley Cooper thing. So I&#8217;m saying I&#8217;m 36. My, uh, I, you&#8217;re</p>\n\n\n\n<p>David Bisset: younger than me, sir. So you take, well, I&#8217;m, you take the ball and</p>\n\n\n\n<p>Maestro Stevens: run with it. I&#8217;m saying this to say, um, I, I started the WordPress late, so I didn&#8217;t even know WordCamps existed prior to 2018, which all of you were well endowed into the WordCamp WordPress system.</p>\n\n\n\n<p>So thank you. It was totally new for me at that time.</p>\n\n\n\n<p>David Bisset: Well, are you looking, are you planning on tending another one?</p>\n\n\n\n<p>Maestro Stevens: Do you want me to drop a secret?</p>\n\n\n\n<p>David Bisset: Oh, yes, yes. I need the ratings.</p>\n\n\n\n<p>Maestro Stevens: So, um, hope, I don&#8217;t know when this is gonna air, but, um, I actually am hosting a workshop at Work Camp Europe. Athens. Greece.</p>\n\n\n\n<p>David Bisset: Well, there you go. Wow. That is a Well, that escalated quickly. That&#8217;s what, that&#8217;s amazing. Well, congratulations. Don&#8217;t, don&#8217;t say anymore cuz we don&#8217;t want to get you in trouble. So you are going to be, have you ever spoken out of the country before? No. Oh, so it&#8217;s gonna be, wow. I&#8217;m gonna watch the, uh, cam, I&#8217;ll, I&#8217;ll have to find someone to point a camera at you cuz get, get, get you in your most nervous moment.</p>\n\n\n\n<p>Tune into an animated gift because my therapist says that&#8217;s what works best for me and my condition. So, very good. Very well done, sir. Okay. Well, northwest Ohio, they need some representation. So, Northeast, excuse me. Northeast. No, we don&#8217;t wanna, no,</p>\n\n\n\n<p>Maestro Stevens: they&#8217;re, we&#8217;re serious about that now. N eo</p>\n\n\n\n<p>David Bisset: now we serious about that.</p>\n\n\n\n<p>We don&#8217;t wanna represent the northwest. Those sons of motherless goats, those people. This, that&#8217;s a, I can&#8217;t swear on this. All right. Northeast Ohio 2021. It is. And welcome to the, welcome to the 2020s. So, Uh, work camps on our list. So last ends with me. I&#8217;m gonna go with, uh, I I I didn&#8217;t wanna pick, uh, any work camp Miamis.</p>\n\n\n\n<p>Um, I think that would&#8217;ve been way too easy if, if, uh, cuz I, I, I&#8217;ve been involved in the organization of that for a decade. I will say though, that work Camp Miami, I think Pat we already mentioned 2018. I, if I had to pick one of that, if I had to pick a second place, that would&#8217;ve been it. We had a thousand people at the FIU campus.</p>\n\n\n\n<p>That was also the same year. The bridge collapsed. There was a bridge collapse at, at the, um, at the campus. Uh, there was some in like a day before the conference, a bridge spanning over a highway collapse that connected the school with the parking lot. And it was major pana. It was, they had to close the school.</p>\n\n\n\n<p>Um, fortunately we were able to keep open. It was just pure madness. Uh, we had to coordinate with the. With the WordCamp committee to, to, to make sure things were okay. And communication got out and people were, it was, it was just a, for the first day it was really a big mess. And it was very sa It was a sad occasion too on top of it, cuz some people did, did lose their lives.</p>\n\n\n\n<p>But on the, on the, uh, what helped, what helped deal with that is that we had over a, still over 1,011 hundred people attend that conference, which was the largest work camp Miami in one of the largest non regional work camps up to that time. We think that&#8217;s the one with the, where we did have our 80 eighties theme.</p>\n\n\n\n<p>We had people dressed like, uh, various eighties stars giving, giving talks. So we asked, we kind of had a costume contest at the same time, um, and the swag. But since I can&#8217;t pick a work camp Miami, I&#8217;m gonna go ahead and pick work Camp West 2016. Just, I just, this is, um, I&#8217;m kind of cheating a little bit by going with the, um, Go.</p>\n\n\n\n<p>Well, let&#8217;s see. Going with the, sorry, I&#8217;m just doing, I&#8217;m gonna have to edit this out.</p>\n\n\n\n<p>It was the very first one, right? Actually, I got my picks mixed up. I got my, oh, I got my picks mixed up. So anyway, um, don&#8217;t worry, I&#8217;ll edit that part out. But we&#8217;re the, actually the work Camp Miami 20th 10th anniversary was my pick. I will find a way to edit this to make it sound coherent, but yes. Work Camp Miami 10th anniversary.</p>\n\n\n\n<p>I got to pick my own work Camp Miami as my most memorable moment. And just to repeat myself, because I&#8217;m gonna edit out the part, I&#8217;m gonna delete the last part. Um, I got my work camps mixed in. So like I said, there was an 80 theme. We had over a thousand people come. There was that. That was that unfortunate incident.</p>\n\n\n\n<p>The bridge collapsed. Um, so we got off to our rough start, but everybody, we, we couldn&#8217;t, we didn&#8217;t have our pre-party because of that incident, um, at the work Camp Miami. But Friday our workshops went off with a good start. Um, we had three workshops, I think like a couple hundred people came to those. Um, we had Matt show up for Work Camp Miami for the 10th anniversary.</p>\n\n\n\n<p>Uh, he was in the neighborhood. He decided to drop by and we had at the very end, one of the most attended closing remarks, um, ever. We have a really great picture of it. I&#8217;ll, I&#8217;ll try to remember to put it in show notes. It&#8217;s a really good PR picture for any work camp, but especially for us. We also had like a two day kids club and anytime someone says, um, like, like what&#8217;s a good example for a kids club?</p>\n\n\n\n<p>And for me personally, it was that two day kids club that we had at Work Camp Miami. And it, it really, like a lot of good things happened at that work camp from an organizer that I&#8217;m very proud of. But I will always look fondly at that 10th anniversary. The kids, the kids&#8217; club or the kids&#8217;, um, workshops were the highlight because they, we had, we actually split it up between young, young kids between, I don&#8217;t know, between five and 10 or five and 12 or six and 12.</p>\n\n\n\n<p>But we had one for the teenagers, the high schoolers, and the first day on a Saturday, they actually learned how to use WordPress. But on the second day we taught &#8216;EM marketing. So not only do they learning how to build WordPress websites, e-commerce websites, specifically on day one, but on day two they were taught how to market those websites.</p>\n\n\n\n<p>Um, And that to me is a model for the getting the younger people more interested in the word in WordPress going forward. It&#8217;s not just, this is how you blog or this is how you move a block. Yes. But you really, these days especially need to teach the young people how it really applies to them when they, when young people, I&#8217;m gonna throw out some young kids&#8217;, kids&#8217; terms here when they&#8217;re on the tos, when they&#8217;re on the tu toots, whatever, over in the Instagrams, like for, they&#8217;re not very hard concepts or networks.</p>\n\n\n\n<p>Right? But, but even more so is like, how can I use this platform either to entertain myself or how to make money or how to get myself popular? Which hopefully when you get old enough, eventually it turns into how can I make a living off of this? Or how can I use this to my advantage? And the technology comes second to those priorities, right?</p>\n\n\n\n<p>So, Our kids camp. That was the whole point of teaching kids, okay, this is how you build something. But tomorrow we&#8217;re gonna show you how you can market this and sell. If you wanna make any e-commerce story, this is how you market it. This is how you get into the search engines, or this is how you use these plugins.</p>\n\n\n\n<p>This is how you create a business plan, which was actually part of the course. So anyway, work Camp Miami 10th anniversary, the eighties theme just ruled. Um, I wish I had a poster, um, but I&#8217;ll share the link in the show notes to a lot of the posters we took, like we had a back to the future theme for our sponsor posters.</p>\n\n\n\n<p>It was just a really great time. So anyway, I digress. Hopefully I&#8217;ve covered over some of my mistakes and now you know what my next gonna be, but we Camp Miami 10th anniversary 2018 was my, was my pick on that. Alright, so now we&#8217;re in round three. Thank and this is why we didn&#8217;t do it live people. Round three last category, Aruba.</p>\n\n\n\n<p>We are going to cover now the state of the word announcements. So you didn&#8217;t have to be there in person. Just to clarify, you didn&#8217;t have to be there in person. You didn&#8217;t even have to be into WordPress at the time, technically speaking. But if there&#8217;s anything historic, anything that stands out to you. Um, the favorite, Matt Moway, so this is Matt.</p>\n\n\n\n<p>Matt was giving these in person up until Covid. So I believe his last in-person WordCamp, uh, state of the word was 2019. And I don&#8217;t think he&#8217;s done in-person state of the word since. Sarah could probably back me up on this probably, but I think he&#8217;s done virtual ones ever since, starting in 2020. And uh,</p>\n\n\n\n<p>Sarah Gooding: I think he did, didn&#8217;t he do one in New York City or one or two?</p>\n\n\n\n<p>He did in New York City with a small audience. It wasn&#8217;t like at a WordCamp, but it was like, yeah, yeah, you&#8217;re right. You&#8217;re technically, but, um, yeah, it wasn&#8217;t attached to a WordCamp.</p>\n\n\n\n<p>David Bisset: You&#8217;re right. I, I misspoke. So not attached to WordCamp. Not a WordCamp. Yes. Used to be a U WordCamp Us. Um, Tradition.</p>\n\n\n\n<p>Exclusive. Yeah, yeah. Tradition at the end, everybody would line up, get into the room, get into this big room, and people would approach the mics. Um, some infamous people would&#8217;ve questions every year. Um, and if you, sometimes you, sometimes you couldn&#8217;t answer, sometimes you couldn&#8217;t get to all the questions.</p>\n\n\n\n<p>So, and then in 2020, I know he did a couple of virtual ones every year, and then I&#8217;m gonna guess 2021, he probably started, um, having them in the Tumblr office. I could be wrong on that. Mm-hmm. But it was a small audience. But ever since then, they, they were disconnected from WordCamps in 2019. Now your favorite, um, this is the announcement.</p>\n\n\n\n<p>So you can pick, you can you all pick and pick the same state of the word, but you can&#8217;t pick the same announcement during the state of the word. So that&#8217;s, so that&#8217;s that, those are the rules. So Aruba, in case any of that made sense, What would you like to tell us would be your best, your, your, your favorite, most memorable state of the word announcement or a state of the anything mentioned at State of the Word, I should say.</p>\n\n\n\n<p>Mm-hmm.</p>\n\n\n\n<p>Aurooba Ahmed: So the very first WordCamp I went to, that wasn&#8217;t WordCamp Calgary was WordCamp US 2019. And that was very memorable for me. So it was the very first time I also saw a state of the word in person and the thing that really I still remember to this day. And it really drove home for me. What we are now doing with WordPress was when Matt told us that the slides were all made inside Gutenberg.</p>\n\n\n\n<p>Wow. That every single one was using and they had just sort of finished live coding it. You know, Ella, one of the core contributors, she had built this plugin and it lets you basically use reveal js and have this block. And so each slide was just a block in this single document where Gutenberg page and it was full screen and it had like really lovely design, even had a little bit of animation and it was like, wow, you know, this, this is, it was such a clear demonstration of what we were capable of, what we were trying to aim for.</p>\n\n\n\n<p>With the block editor and I just, it was, it was, it was a core or a press memory for me for sure.</p>\n\n\n\n<p>David Bisset: I&#8217;ll try if, if you, when you send your links, if you, um, you people have done so much work enough, I really appreciate it. If you can, if you can find the video and find that timestamp to that mm-hmm. When you made that announcement, that would be great.</p>\n\n\n\n<p>I almost wanted it that point to have WordPress be a slide maker. I&#8217;m surprised no one has really come out with the plugin for that since, or maybe they have, but that must be There is a plugin. Oh. To make slides out of</p>\n\n\n\n<p>Aurooba Ahmed: the original plugin is in the repo and since then there have been multiple other plug-in plugins that, you know, let you create slides with WordPress that are out there.</p>\n\n\n\n<p>Yeah. Well that&#8217;s, I&#8217;ve done it for a presentation myself. It&#8217;s really cool. Lots of fun.</p>\n\n\n\n<p>David Bisset: Okay, so that was work Camp US 2019, right? Yeah, that&#8217;s right. The last in person one I, I remember. Mm-hmm. I remember. Mm-hmm. Being in the audience. I can&#8217;t remember that specifically cuz I was probably tweeting too fast.</p>\n\n\n\n<p>Okay. Well great. That&#8217;s fantastic. So we still, we have the Gutenberg. Hey, turns out these are slides announcement from Work Camp US 2019. So Sarah, so you I&#8217;m sure covered a lot of state of the words at the tavern over the years. What was the one that stood out to you? Or what announcement or something brought in the state, in a state of a word, stood out to you the most?</p>\n\n\n\n<p>Sarah Gooding: Yeah, I usually do a writeup every, every year for the state of the word. And, uh, 2014, um, in, at Ward Camp San Francisco. It was the last ward camp San Francisco. And Matt announced this is the last time we&#8217;re gonna be here and, uh, we&#8217;re next year we&#8217;re gonna continue with Ward Camp us. So that was like a, a major change.</p>\n\n\n\n<p>Um, And it was kind of like WordPress was stepping into its global destiny, I felt like, because, um, he also at that time announced that it was a big turning point for the project because, um, the number of non-English downloads surpassed the number of English downloads of WordPress. Yeah. So the software was just getting more of a global user base.</p>\n\n\n\n<p>And, um, he announced that basically they&#8217;d outgrown their flagship WordCamp and we&#8217;re moving it to a whole, a bigger one. And, um, we out, we outgrew I R C and we moved to Slack that year. So that was kind of a big thing. It was a major change for the project&#8217;s, communication tools. Um, and at that time, I think Fiber, the future had just started.</p>\n\n\n\n<p>So he, he said during that address, this is what&#8217;s gonna take us from 23% to 30% or 40%, 23%. And it was so ambitious at the time. It was, I mean, who, who could imagine at that time that, that WordPress would be 40% of the web? And um, it was just an exciting time to be a part. I was, I was there at the WordCamp, um, but there was so much energy because WordPress was growing so fast and it was every year you&#8217;re gonna expect it&#8217;s gonna grow and grow and outpace all its competitors.</p>\n\n\n\n<p>And uh, it was a great, it was just a great time to start getting involved because um, the energy was, was so good at that time.</p>\n\n\n\n<p>David Bisset: Yeah, I remember the excitement about award camp us cuz it definitely, there wasn&#8217;t anything beyond a city level at that time. Maybe, maybe, maybe a few regionals, maybe, you know, along those lines.</p>\n\n\n\n<p>But it was nothing on a continent. Well it&#8217;s not a continent, David, you gotta go back to school on a country.</p>\n\n\n\n<p>Sarah Gooding: I think they might have, they might have done WordCamp Europe by then, I&#8217;m</p>\n\n\n\n<p>David Bisset: not sure. Was Work Camp Europe first. I think it, yes, I think it was so,</p>\n\n\n\n<p>Sarah Gooding: and there was kind of a rivalry for a while.</p>\n\n\n\n<p>Seemed like, you know, WordCamp Europe is bigger, or WordCamp US is bigger. And then remember just back and forth every year.</p>\n\n\n\n<p>David Bisset: Remember I remember WordCamp, I remember Matt saying that he wanted WordCamp us to be bigger than that. I, I didn&#8217;t think that, I didn&#8217;t think that was gonna be possible cuz just on geography alone, um, just because Europe is just so much bigger in terms of, in terms of that than a, than a US would, would, would be able to.</p>\n\n\n\n<p>But yeah, so we did have Work Camp Europe, but, but really regardless of size work, camp US is a, is the flagship event of all the work camps, at least in my mind. And it&#8217;s not just because of size, it&#8217;s just because it was, I, I think because of that. Day in 2014 where it&#8217;s like, and I guess maybe, maybe it is a, maybe it is a United States centric thing for me, cuz I live in the US but it was kind of along the lines.</p>\n\n\n\n<p>I&#8217;ve seemed like that was Matt&#8217;s home WordCamp. And as WordCamp US kind of progressed, taken two cities every year. Was it? It was, yeah, it was the same city two years in a row. Move on to a different city. Matt just seemed to embrace the, remember the boot on stage in Memphis. Um, he just seemed to embrace the, I mean, where Campy West was Matt, and it&#8217;s not, it was, it was not it, you know, the two seemed pretty closely linked together and although he did attend work Camp Europe, um, I don&#8217;t remember him giving a state of the word at work Camp Europe either moving forward.</p>\n\n\n\n<p>He always did it in San Francisco and then kind of did it at us, um, for a while. So that to me was always like the home work camp because Matt was always. They&#8217;re doing his state of the word. That was, that was the, that was the central thing. And of cor of course, Europe was, was bigger, but it was, it was the WordCampy west that always seemed to be a special home for that.</p>\n\n\n\n<p>So I, I guess that, does anybody ever, did anybody ever attend the last one in San Francisco in 2014? I, I was there. Yeah, I was, I was there too. I think that was the one where they had the fire alarm or the medical emergency or something too. Mm-hmm. And, uh, yeah, it was very tightly packed in there. Um, the state, when Matt did his state of the word, people were sitting, like, I, I was, I had, I had to get like there an hour before just to be in the front row and super glue myself to the seat.</p>\n\n\n\n<p>Which was embarrassing because I didn&#8217;t bring a change of pants. So anyway, that&#8217;s a different story. I so work camps San Francisco 2014 when we announced work camp us among all the other things that Sarah mentioned too. So that is a very memorable war camp and what I can appreciate cuz I was there. All right, Jess, keep this train going along here.</p>\n\n\n\n<p>What work camp, or excuse me, what state of the word announcement sticks out in your mind?</p>\n\n\n\n<p>Jess Frick: Also exciting, but in a different way. 2018</p>\n\n\n\n<p>David Bisset: WordCamp US 2018. Yes. It</p>\n\n\n\n<p>Jess Frick: was as if the entire stage was surrounded by gasoline and half the audience had pitchforks, like the tension was palpable in the room. And everybody&#8217;s like, oh my God, what is he gonna say when he gets on the stage?</p>\n\n\n\n<p>And he starts with this video of people just talking about how crappy the interface was on the old WordPress. And we&#8217;re like, yeah, actually he&#8217;s, he&#8217;s not wrong. And then they show. Guttenberg. That was when Morton got up and brought up some really reasonable questions about transparency, and I think that was the first time a lot of people really started thinking about, you know, how much transparency is there for contributors?</p>\n\n\n\n<p>And, you know, what do you have a say in? And honestly, like, I don&#8217;t wanna turn this into like a Matt Fangirl moment, but honestly that was one of the times where I most admired Matt&#8217;s leadership of the project because I felt like he really stood in front of the team and took the bullets and then said, Hey, I hear you.</p>\n\n\n\n<p>I feel you. Feel free to get involved and make, you know, informed opinions in our dev meetings and we&#8217;d love to have you, but otherwise maybe just hang out. Um, I, I feel, and that&#8217;s of course me cribbing it, but I thought that he handled it with. Grace and elegance. And I thought that at the end of it, people were a lot more, I feel like the vibe was a lot more relaxed and excited about the go forward.</p>\n\n\n\n<p>You know, most of the WordCamp had, you know, built up this tension and it definitely felt a release after that. Um, yeah, I, I had been to other state of the words, but none really shined quite like that for me. Um, now Matt&#8217;s, Matt&#8217;s a great leader and I&#8217;m not just saying that because he&#8217;s, you know, essentially my boss, um, but also because he is my boss.</p>\n\n\n\n<p>Um, but it really was a really great moment, I think, for the WordPress project. And that was when I really wanted to get involved into contributing. Um, cause you know, if you&#8217;re gonna cry for transparency, you should probably do something with it.</p>\n\n\n\n<p>David Bisset: It took a lot of guts to probably get up there because like you said, this was the same event.</p>\n\n\n\n<p>Where a couple of days before people were in their hotel rooms coordinating with teams to get their stuff ready for Gutenberg. Right. Um, controversy going forward and like, wait, I, the amount of discussion, because remember, you know, this was before where camp started, so once I think, I think when I think we got out of that mode of rush, rush, rush, rush, like updates happening every, you know, probably on Twitter we were just monitoring the, the entire.org forms was, was just nuts.</p>\n\n\n\n<p>And, um, slack was nuts. Um, I think it was, it was Slack then I think, right? Yeah. It was whatever form we were communicating with, it was, it was, it was nuts. And then work camp started and then you had that. Like he&#8217;s taught, like that wasn&#8217;t the fir, that was the last thing at work camp us. Right? So you had hallway was, I remember having hallway conversations about the, and I won&#8217;t, I won&#8217;t go into it.</p>\n\n\n\n<p>I mean, it was, it was more just nervousness than negativity, but it was just like, you know, people were on edge. And for Matt to have that state of the word and like in that kind of, um, I, it, it took a lot, it took a lot of guts to, for anybody to do that and, um, for anybody to ask questions. And that did lead to conversations with Morton and then from thereafter about transparency.</p>\n\n\n\n<p>Does any, does anybody remember, um, that particular feeling in the community at that time?</p>\n\n\n\n<p>See, seeing some nods there? Yeah, that&#8217;s, that&#8217;s okay. I wouldn&#8217;t have answered that question either vocally and been on the record. That&#8217;s fine. Uh, there&#8217;s too much, uh, uh, I, I think people forget. Like how hectic it was then. And I think because of the way Matt handled that, even with probably looking back on it, I think some things maybe could have been handled better in hindsight.</p>\n\n\n\n<p>But, but you know what, what, when you look back on something, what&#8217;s, how does that differ from anything, anything else in terms of how you can handle anything better? I did make a notable, he did make a notable comment about more transparency. Yeah. Um, because honestly, up to that point in time, the reason why things weren&#8217;t so hectic is because it&#8217;s not as transparent as things are today.</p>\n\n\n\n<p>And that&#8217;s, that&#8217;s how I looked at it. If everybody feel free to, you know, jump into here, I&#8217;m, but now that with especially Josepha, um, over the years being more transparent, the things on.org, I think a lot of that transparency would&#8217;ve taken us over time, a lot slower to evolve if it wasn&#8217;t for. How Matt handled that and the people asking him questions deserve as much credit as that.</p>\n\n\n\n<p>But that was a very difficult time too, because the media, there was a lot of media attention on that state of the word outside of WordPress too. And I&#8217;m not sure if people remember that, but, um, I remember like news organizations and I, I don&#8217;t remember the, the ones that existed then probably don&#8217;t exist now.</p>\n\n\n\n<p>So I don&#8217;t know what, but a lot of news organizations, this was in the news, is that the one where the mayor came on stage? I can&#8217;t remember. But this was on, this was in the news. This was, um, this was big news to the, to the entire internet that WordPress, whatever market share hold the time has launched This Gutenberg editor and Matt Longway was in the news was, was on lot of tech websites that were not WordPress related.</p>\n\n\n\n<p>It was a big deal. So that probably was the most media attention, media focused. Hectic nervous ball of nerves type of state of the word that probably I can ever, ever think of. So that was definitely one for the history book. So where camp u s 2018 in Gutenberg.</p>\n\n\n\n<p>Sarah Gooding: I think all that, that controversy was so healthy though, because you had all these really high profile contributors and business people who were like, no, this isn&#8217;t ready to ship yet and you&#8217;re giving us three days notice.</p>\n\n\n\n<p>And it was, it was, it was a discussion. And, and Matt was very present there. He was in the dev meetings and he, he was back and forth and, and you gotta remember like all these people really grew up together in their careers. I mean, this is, some of these people have a 20 year history together. Yeah. You know, at least 10 or 15 years for a lot of the people who own the, these big businesses or have been contributing a long time.</p>\n\n\n\n<p>And you know, some of &#8217;em are real brave to speak up and be like, Hey, this isn&#8217;t cool. We don&#8217;t want releases like this in the future. And, um, You know, the, it&#8217;s amazing to see how the project, the project has changed over the years, and especially Josepha has been just amazing. But, but they, all these people have grown up together and they&#8217;ve, they&#8217;ve matured together and the project has matured and it&#8217;s, it&#8217;s really a cool thing to watch.</p>\n\n\n\n<p>And, uh, I think controversies like that are, are good because it means that people feel free to talk to each other still. It&#8217;s not just some, some cold corporation style thing that the, you know, it&#8217;s a family and people are gonna speak their minds and, and it&#8217;s healthy and it, and I like that. It was an exciting time.</p>\n\n\n\n<p>David Bisset: I&#8217;d be honest. I mean, to me, I think some people stuck I, the further away we get from that moment, which is, it was 2018, so that&#8217;s like what, five years from, it&#8217;s, it&#8217;s a distant memory now, but I know some people look back and instill with a bit of anxiety. Uh, so</p>\n\n\n\n<p>Jess Frick: I don&#8217;t think 2020 and 2021 were real. So it really was just like two years ago.</p>\n\n\n\n<p>David Bisset: Whenever some, i I, this will always be a word can, well, it&#8217;ll always be a time where somebody&#8217;s gonna say, well, you know what, back then this happened and it wasn&#8217;t great and blah, blah, blah. But it, it kind of like, it was definitely a, like a growing up point in terms for the whole community. It&#8217;s time to put our big person pants on.</p>\n\n\n\n<p>And yeah, some Matt admitted some things were not, were his decision, but they weren&#8217;t, they weren&#8217;t right. But they were his decision. They took responsibility from &#8217;em. And we have some of the things today. We have the trans, we have the transparency today and things today because of the conversations that came from that.</p>\n\n\n\n<p>So, Um,</p>\n\n\n\n<p>Aurooba Ahmed: we also have more contributors now because of it. I mean, I&#8217;m one of those people who was affected before that. I had never contributed to WordPress before 2018. You know, uh, the, the merging of Gutenberg decor was not just a moment of like a chapter change for the software or even for the folks who were growing up.</p>\n\n\n\n<p>It was also a moment of it created space for new blood, which I don&#8217;t think really existed before. And I still think that, you know, we&#8217;re also doing work to make contr, uh, contributor stuff easier for everyone. But that was for me, a really big, like milestone. Like looking at it from, as in just coming into that community at that time.</p>\n\n\n\n<p>Like, oh, okay, I, I could actually do something here too. You know? I don&#8217;t have to just wait for all these other people who&#8217;ve been here for the last, like, many years, these, uh, the legacy folks and, uh, and wait for them to do something. I could maybe do something too. So, and you&#8217;re walking. That&#8217;s something.</p>\n\n\n\n<p>That&#8217;s how I remember looking into it.</p>\n\n\n\n<p>David Bisset: Yeah. And you&#8217;re walking in brand new, like, why is everybody so nervous?</p>\n\n\n\n<p>Aurooba Ahmed: Well, it was still nerve-wracking, right? Like it was also one of those things that affected, it was an economic. Problem because it affected people&#8217;s livelihoods in a very deep and impactful way that other updates didn&#8217;t necessarily do, or other updates before They did create that impact, but it was almost always a little bit positive.</p>\n\n\n\n<p>But this one was like, it could be positive, it could be negative. It&#8217;s like a, like we took something that was like this and we said, oh, okay. It&#8217;s like this now. Like, what, what&#8217;s going on? Took a leap. So it&#8217;s different.</p>\n\n\n\n<p>David Bisset: Yeah. And there was also the four phases of Gutenberg and very, mm-hmm. And then which, which, which kind of laid out the entire plan, which we are still going, we&#8217;re entering phase three as we speak.</p>\n\n\n\n<p>So anyway, Maestro, we want to get to you, um, state of the word announcement or anything you want to tackle there.</p>\n\n\n\n<p>Maestro Stevens: I&#8217;ll segue the, um, the phases of Gutenberg. I think that for myself and then with Aruba, what you were saying as far as the, uh, contributing to like bridge them together. I think it, I don&#8217;t know if it was 2020 or 2021, so anybody can help me out.</p>\n\n\n\n<p>But I got really excited when Matt started talking about the collaboration. Um, that was something that, it was just super cool bringing Google Docs type features, you know, um, to WordPress. And for me, um, as a new contributor, that was, uh, in essence, um, I would say a part of, um, how I feel like other people can contribute that aren&#8217;t really WordPress savvy by being able to at least collaborate with other word pressers.</p>\n\n\n\n<p>Um, that was awesome. I believe it was 2020 when he was, if I&#8217;m not mistaken, the, uh, instead of the word, um, when he had mentioned it. Cause I started watching them after they were, uh, they weren&#8217;t, you know, attributed to the WordCamps themselves.</p>\n\n\n\n<p>David Bisset: Yeah. Collaboration&#8217;s big. Uh, we&#8217;ll find the, we&#8217;ll we&#8217;ll see if we can find the time set.</p>\n\n\n\n<p>I honestly can&#8217;t remember. Like the four phases were always laid out and collaboration was always phase three, but I can, but there was very little detail in the very beginning, like 2018, what those phases were actually gonna be. So 2020 sounds about right cuz I, um, I remember sitting virtually getting more information about the collaboration stuff and over, over the years it&#8217;s gotten a little bit more detailed, but what about, well, Maestro, since uh, I, since you&#8217;ve been, you&#8217;ve been humbly listening to all of us Jabber about our old days.</p>\n\n\n\n<p>What specifically about the collaboration stuff stood out to you the most? Why, why would you be excited about that particular phase? Why did that stick out in your mind?</p>\n\n\n\n<p>Maestro Stevens: Well, I felt for a while it was kind of annoying, um, having to</p>\n\n\n\n<p>get permission or kick somebody out. Of being able to edit the page. Ah, and that would like that, that hurt a lot of production time. Um, it made people have to communicate a lot more. It made you have to wait, um, if you are patient or not patient. It made you have to practice patience. Like you got kids. Um,</p>\n\n\n\n<p>David Bisset: I kicked them out of their blogs all the time.</p>\n\n\n\n<p>Maestro Stevens: Yeah, right. You know, so it was, it was, uh, for, for, for me and for some people that I knew, it was definitely a great, uh, aspect of them being able to work alongside. And so that was different for, um, me working with a designer and a developer. The fact that they can both, like if they can both be in, when he announced that if they can both be on the same page at the same time along with myself and we&#8217;re all kind of doing our own thing, we just have to wait for each other.</p>\n\n\n\n<p>That to me was just invaluable. Cause I&#8217;ve been using Google Docs forever and I think a lot of people have, um, have, have gotten used to being able to like edit things in real time. And it was the real time factor that I thought was so cool. I had no idea. Word Press. Was going to do or could do?</p>\n\n\n\n<p>David Bisset: Do you think that could be the next wow factor in terms of Gutenberg?</p>\n\n\n\n<p>I mean the, I mean, we, full side editing is big, but to the outside world, I don&#8217;t think it has been as revolutionary because well, side editing exists, right, exists outside of WordPress. But I, correct me if I&#8217;m, I&#8217;m this, hopefully we get this out in a video form, but I, in case you&#8217;re listening to the audio, everybody&#8217;s nodding their head yes.</p>\n\n\n\n<p>I just want to let that, I just wanna make that clear. Uh, but I&#8217;m imagining the collaboration more than just editing a Google Doc type of a thing. I, I&#8217;m hoping, I&#8217;m hoping that collaboration also means I&#8217;m seeing someone drag a block here while I&#8217;m dragging a block over there on the page. Big, my like.</p>\n\n\n\n<p>Yeah, that&#8217;s the level. Like we think of collaboration as Google Docs, which is fine cuz we&#8217;ve grown up with that. Google has nailed that functionality and over the years other people have caught up. Even, you know, apple and other people took a while for them to polish that out. That wasn&#8217;t their strength.</p>\n\n\n\n<p>But now, but now it&#8217;s, you know, like that&#8217;s table stakes now in terms of if, if you&#8217;re collaborating, if there&#8217;s any collaboration at all. Like unless you&#8217;re a journal app that is just you or the author, there has to be some sort of sharing or collabora, you know, live, you&#8217;re seeing someone else&#8217;s cursor on your screen, right?</p>\n\n\n\n<p>It was built into Apple&#8217;s os later on. But Google pretty much set the, set, the standard moving forward. But you know, so that is a standard. So if that is done in WordPress, editing a document, editing text, uh, I&#8217;m hoping there&#8217;s more and I hope WordPress gets that, that wow feature factor. Kind of back, which is difficult to do when you do open source, cuz it&#8217;s not like you&#8217;ve kept, you can&#8217;t keep something hidden.</p>\n\n\n\n<p>Right. And then release it, because that&#8217;s not, you&#8217;re not gonna get open source con contributors doing that. It&#8217;s all gonna be out in the open. So it&#8217;s not gonna be a surprise to us. But I&#8217;m hoping that you can start dragging blocks and building pages, like seeing things being built in front of you and just like, um, I think it was, was it was, was it, I forgot.</p>\n\n\n\n<p>I&#8217;m sorry. What? Who was who? Who was com Uh, I think Jess said, I think it was you about like when go, that video started that guttenberg about all these people complaining by the editor and then you saw the new editor. I want to see a video like that when, when the, when the collaboration tools come and you just see live on a video or even live like this is, this is this whole, how about the slides were, somebody should just like, you know that that meme with the dog and the, and the, and the railroad tracks from a walls and grot.</p>\n\n\n\n<p>Yeah. Yeah. Um, you know how he&#8217;s putting down the railroad tracks really fast. There&#8217;s a tr as he&#8217;s building it as the train goes. I would like to see that in slide form, in WordCamp, state of the word maybe,  or something along those lines. Some live demo or live presentation or really slick video of really cool collaboration tools.</p>\n\n\n\n<p>So I think,</p>\n\n\n\n<p>Aurooba Ahmed: I think if you put collaboration and multilingual together in one video, it&#8217;s like p</p>\n\n\n\n<p>David Bisset: yeah. It&#8217;s, I can understand multilingual and I understand people&#8217;s, like, why don&#8217;t you put multilingual before that? Because we really need it. We really need it. I can understand why it&#8217;s the last one because I think that&#8217;s the most complex part.</p>\n\n\n\n<p>I think that could be the most complex of all, everything. And you, you wanna map your things out probably before you start breaking things up in terms of translations. But yeah, just imagine esp uh, I don&#8217;t want to get too ahead of ourselves, but like, I, I, I&#8217;ll, I did like a what would be a, um, ooh, there, there&#8217;s a good question.</p>\n\n\n\n<p>We could, we could probably end on real quick. Um, a spot on question, um, for me, Just real quick, um, my state of the word, um, was basically, uh, 2016 state of the word Matt. Matt, um, was featuring, uh, the year before 2015 was, and I can&#8217;t believe anybody picked this, but I&#8217;m not picking it, but he did say learn JavaScript deeply, I believe in 2015 and then tw in 2016.</p>\n\n\n\n<p>He, and that&#8217;s probably his most quoted phrase of any state of the word, was learn JavaScript deeply in 2015. That&#8217;s why no one picked it. Yes, all of you, all of you should be proud of yourselves, but that&#8217;s not the one I&#8217;m picking in 2016, what happened was after I heard that in 2015 where Camp Miami was like four months away.</p>\n\n\n\n<p>So I came back as one of the organizers and I got with the team and we made a learn JavaScript deeply track at Work Camp Miami based upon what he said because back then there was not a lot of focus on JavaScript and we needed to get up to speak to it real quick. And that&#8217;s what we did through that track.</p>\n\n\n\n<p>But then the following work, uh, after that at Miami in 2016, Unknown to me. He, he put like in one of his slides, like a, um, let&#8217;s see, hold on a second here.</p>\n\n\n\n<p>I&#8217;m gonna put it in our chat so you can take a look. He took a screenshot of the, yeah, thanks. You can s if you&#8217;re gonna laugh, okay. Mute yourself. Thank you. Everybody right now is, God, I hate you all. That&#8217;s a lot of hair gel. David. The sad part is it&#8217;s not hair gel. The, the point is, is that he took a schedule of where Camp Miami and he put it up there, which was fine cuz he wanted to feature p you know, us getting into JavaScript and listening to his advice every year earlier.</p>\n\n\n\n<p>But that he found the worst possible picture of me and put it next to it. Now that&#8217;s bad for two reasons. One, because that&#8217;s not, I don&#8217;t think a representative of War Camp Miami cuz it wasn&#8217;t just me. Um. Other organizers were involved, but two, that was just a bad picture. And I remember you look so happy.</p>\n\n\n\n<p>Well, I was young and I, I don&#8217;t know if I had kids back then, but the point is, the point is, is that I was in the audience and I saw it and I was live tweeting at the time and like, you know, I almost had to change my pants. It was, it was just the moment. And I c it was just the, probably the most embarrassing.</p>\n\n\n\n<p>And I had people looking at me going like, man, you, you look just as just like that guy. And I&#8217;m going, yeah, that&#8217;s me. And uh, but so I got to be on a slide, just, you know, next time, you know, I wish my PR people would, would&#8217;ve coordinated with his PR people. So anyway, I&#8217;ll include a link to that picture in the show notes.</p>\n\n\n\n<p>But that was probably like the work camp 2016 I got on a slide and I don&#8217;t think that&#8217;s gonna happen twice. So that&#8217;ll be etched in history. I&#8217;ll never get a better picture. Yeah, I look better. You know, we could use another slide. But anyway, that&#8217;s, that was my story. All right. So we went from us. We, so we, we went from 2019.</p>\n\n\n\n<p>All of these were work camp uss, of course, except for San Francisco in 2014. So I think that&#8217;s not a surprise there. Um, actually 2020 was virtual, so not, not work camp us. So anyway, that was, that was fun. Now as we wrap things up here, is there, I&#8217;m gonna go in order one last time or one last time. If there&#8217;s anything real quick you wanna bring up, just like we can&#8217;t be as detailed as we were before.</p>\n\n\n\n<p>There&#8217;s gonna be rapid fires. Is there anything that we didn&#8217;t bring up one or two quick memories that didn&#8217;t fit into these categories? Aruba, we&#8217;ll start with you.</p>\n\n\n\n<p>Aurooba Ahmed: Hmm. I can&#8217;t think of anything. I am very happy to not have gotten sniped and got all my memories in.</p>\n\n\n\n<p>David Bisset: Okay, that&#8217;s fine. If, if you&#8217;ve got, if, if you&#8217;re happy, I&#8217;m happy.</p>\n\n\n\n<p>Sarah, is there anything that, that&#8217;s, that, uh, you. That didn&#8217;t fit into those categories you&#8217;ve covered over the years that,</p>\n\n\n\n<p>Sarah Gooding: uh, I have more that do fit into the categories, but, um, nothing outside categories. Uh, I had a couple other links that I thought were interesting, um, that were, that actually happened at WordCamp Europe.</p>\n\n\n\n<p>Um, in 2017 in, in Paris. Matt announced that the Gutenberg plugin was ready for testing. And I thought it was kind of, kind of cool because he hadn&#8217;t been doing big announcements at WordCamp Europe. I mean, he was, he would usually save all the big announcements for WordCamp us. So that was like a major thing that the European WordPress community got to be first in on, or, you know, they got to hear the news first.</p>\n\n\n\n<p>And then in, um, the next year, like one year later, I think it was June, 2018 when he unveiled the roadmap for how Gutenberg was getting into core. And it was just like months away, which started like every, all the people, um, were just scrambling to get ready at that point because he was like, okay, here it comes, we&#8217;re gonna go for it in 5.0.</p>\n\n\n\n<p>And um, and that was an exciting time. I remember I contacted probably like 10 or 15 different people who had freelance businesses or agencies, and I said, what, what are y&#8217;all doing to get ready? And then I, I wrote this post about morphine. You know, some of, some people were like, I&#8217;m just gonna wait and see and I&#8217;ll see if anyone likes this block editor or not, and then maybe I&#8217;ll update.</p>\n\n\n\n<p>David Bisset: Some people are still doing that.</p>\n\n\n\n<p>Sarah Gooding: And then, you know, and then there are others who were like, oh, we&#8217;ve already dedicated an entire team to get us ready for Gutenberg. And we&#8217;re, we&#8217;re already, you know, they&#8217;re giving a very good, uh, just very good PR as far as their readiness for it. And, uh, that was a fun time.</p>\n\n\n\n<p>So I thought that was cool that he saved, he had given both of those big announcements at WordCamp Europe years later. Once that was just, it was established as just, I think it was the biggest WordCamp for a long time.</p>\n\n\n\n<p>David Bisset: Yeah. Agreed. Agreed. So, Jess, Jess, anything we missed?</p>\n\n\n\n<p>Jess Frick: This might, this is probably gonna sound way cheesy when I say it than it is in</p>\n\n\n\n<p>David Bisset: my head.</p>\n\n\n\n<p>You&#8217;re on a panel with me. You&#8217;re safe because I&#8217;ll Okay, cool. Standing next to me, you are the opposite of cheese. What?</p>\n\n\n\n<p>Jess Frick: So, you know, uh, Mr. Rogers, you know, he&#8217;s quoted as saying, you know, when he was afraid his mom would tell him to look for the helpers. And when I think about the history of WordPress, I think about the people in the community and the countless, you know, GoFundMe and somebody gets sick and they can&#8217;t work, or their kid gets hurt, or, you know, during C O V I D when so many different things were upside down.</p>\n\n\n\n<p>And, you know, we&#8217;ve talked a lot about the really cool, about the really technology, but what&#8217;s been amazing to me is to see people that have come together over the years and all the cool things that they&#8217;re doing, um, to support one another. Um, even as recently as like last week, everybody was pitching in to help somebody who somehow found themselves homeless.</p>\n\n\n\n<p>You know, it&#8217;s, it&#8217;s been really, really cool to see so many good people join together under the umbrella and all the good that we do for open source and personal. I told you it was gonna sound kind of cheesy. Uh, but I mean it,</p>\n\n\n\n<p>David Bisset: Well, I, there&#8217;s so many different aspects of the WordPress community that could fit into, um, Kim Parsons is, do I have that name right?</p>\n\n\n\n<p>Yes. Okay. Sh not the first ex, not the first example of, of a member of the community passing away, but I bel But it was, it was, she was well known by a lot of people and which started the, um, the WordCamp Scholarship. Scholarship. Right. I&#8217;m sorry. Thanks. Mm-hmm. Thanks. So, but she is just one example of so many, like we have scholarships for, for, for diversities now, now for other people.</p>\n\n\n\n<p>There was, um, the, I can think of a half a dozen people that have passed away over the years too, that have gotten there every year. We remember them. Um, and that&#8217;s very kind of, Very unique for a community for to do something like that even on, um, regardless of the scale. So yeah, the community really kind of pitches together.</p>\n\n\n\n<p>And we also kinda have fun too. We, we, we do podcasts like this, um, you know, you know, of our own free will except for that one person and blackmailing to be on this panel today. But other than that, we&#8217;re doing this because we are a tight-knit community. So, yeah, I think that&#8217;s great. I think that&#8217;s a great thing to keep in mind over the past 20 years, you know, and there&#8217;s, there&#8217;s, there&#8217;s drama, but I mean, it&#8217;s, it&#8217;s, we&#8217;re we&#8217;re still a collective group for the most part.</p>\n\n\n\n<p>Um, so finally, uh, my</p>\n\n\n\n<p>Jess Frick: Sarah mentioned earlier. People are growing up together.</p>\n\n\n\n<p>David Bisset: Yeah. Bringing ki bringing their own kids to work camps. Right. Somebody, some, somebody supposedly conceived one at work camp I am at don&#8217;t that, so that&#8217;s not at the event. I meant during the weekend. Okay, we&#8217;re gonna have to edit that one out.</p>\n\n\n\n<p>All right, moving on.</p>\n\n\n\n<p>Aurooba Ahmed: Wait, wait. I take it back. There is one like length thing that I wanted to talk about</p>\n\n\n\n<p>David Bisset: Uhoh, and that was when her eyes lit up. When soon as I started talking about conceiving children at work camps, her eyes lit up. You&#8217;re gonna have to go. Go ahead. Go ahead. You&#8217;ll ahead Back over.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Aurooba Ahmed: Yeah. Um, that was when Woo Commerce joined WordPress. That was a moment. Oh, it was a big moment, right? Because Woo. Commerce like woo themes, they were doing so well and they had become fast, become the fast, like the most popular e-commerce system in. Like e everywhere on the web and then automatic, uh, it was like the one, like a really big notable acquisition from Automatic before that there, I don&#8217;t know, I have no idea actually if they had done any other acquisitions before then.</p>\n\n\n\n<p>But that one was like, it started the train of acquisitions a little bit and it was like, oh, we were Democrat democratizing publishing and now we&#8217;re democratizing e-commerce. And now it&#8217;s like democratizing like all kinds of other things, social media, et cetera. Right. But WooCommerce really, really began that sort of, um, moment in time.</p>\n\n\n\n<p>Right. For automatic and like how it affected all of us in the WordPress community,</p>\n\n\n\n<p>David Bisset: uh, au Speaking of acquisitions, I, you can&#8217;t go with 20 years of WordPress without talking about the acquisitions that&#8217;ve made in the last decade. Right. We saw the first decade of all these people that were starting companies like, um, like, um, Saed, Saed Automotive, but also Pippin and mm-hmm.</p>\n\n\n\n<p>Uh, like all these people who I&#8217;m drawing punks on right now, the first 10 years you would see them at the work camps and then most of them have moved on or sold their businesses or become acquired. And who&#8217;s, you know, the last, especially the last five or six years, so many WordPress companies that we saw give birth in the early part of the WordPress days now are more mature or they&#8217;ve been absorbed into larger companies and people that were working out of their basements are now like managing like dozens of people at height level companies, um, and, and the hosting companies too.</p>\n\n\n\n<p>Right? Remember when hosting was so immature in the 20, uh, in the early days? Oh, yeah. And, uh, acquisitions. I, when you, when you said that I remember, um, I think it&#8217;s more recent, but in August of 2019, Tumblr Joint Automatic, which was huge. And yes, I think we still have to see the ultimate fruits of that labor because we&#8217;re starting to see Gutenberg and Tumblr now.</p>\n\n\n\n<p>Mm-hmm.</p>\n\n\n\n<p>Aurooba Ahmed: And in day one, which was in the news pretty recently as well, the journaling app.</p>\n\n\n\n<p>David Bisset: Yeah. So, and then I think that if anything is going to outlive, like what Matt said, if anything&#8217;s gonna outlive WordPress, it&#8217;s gonna be Gutenberg. Right. That&#8217;s, that&#8217;s, that&#8217;s the ultimate. So it&#8217;s so exciting to see how automatic is automatic&#8217;s non WordPress business.</p>\n\n\n\n<p>Not directly. We used to think of word of automatic as wordpress.com, but over the years with its acquisitions, it&#8217;s, it&#8217;s now, it&#8217;s now so much more, but it&#8217;s affecting WordPress in ways that we never, I didn&#8217;t think we are, would realize, uh, 10 or 15 years ago. So, Micra, are you with us?</p>\n\n\n\n<p>Maestro Stevens: I am back. Sorry about that.</p>\n\n\n\n<p>My computer is freezing, so I had to restart it.</p>\n\n\n\n<p>David Bisset: No problem, sir.</p>\n\n\n\n<p>Maestro Stevens: It&#8217;s overheating.</p>\n\n\n\n<p>David Bisset: Oh yeah, you&#8217;re, you&#8217;re, you&#8217;re just too hot. All right. So, Hmm. Okay. I&#8217;m gonna have to, I wanna, wanna bet with my wife just now. Just thought I&#8217;d let you know. Um, said something like that. All right. So maestro, uh, bring it home for us.</p>\n\n\n\n<p>Is there anything about, uh, that we may not have, uh, touched on tonight in terms of your, of, of terms, of things in the WordPress history, especially from your perspective?</p>\n\n\n\n<p>Maestro Stevens: I can&#8217;t think of anything. I think that we&#8217;ve touched on mostly everything I would say for me specifically, uh, back in 2020 when I was introduced to, um, o one of one of the plugins, themes and, and, uh, block plugins that I use in cadence, it was a very, um, revolutionary experience for me.</p>\n\n\n\n<p>To say the least. I was using Elementor, I was using a page builder before then. People were talking a lot of crap about Gutenberg, a lot of controversy. I&#8217;m just keeping it real with you. Um, people were saying it was ready, it wasn&#8217;t ready. And then, um, you know, after testing a whole bunch of different, um, plug-ins and themes and they&#8217;re all, you know, a whole bunch of are, are so great.</p>\n\n\n\n<p>But if I wanted to invest into an ecosystem, kind of like Apple, unfortunately, I thought my investment with Apple kind of suck right now. Cause I&#8217;m like, I got this expensive computer that just overheated, but I digressed. Um, uh, it was keep blowing. That changed everything.</p>\n\n\n\n<p>David Bisset: Well, thanks. Okay.</p>\n\n\n\n<p>Maestro Stevens: Yeah. That changed everything for me.</p>\n\n\n\n<p>David Bisset: Well, that&#8217;s fantastic. Well, I mean, I think you&#8217;re, I I think we have a very good representation here and, and you especially because you&#8217;re coming in on the last couple of years and seeing it from that kind of different perspective with those kinds of eyes. Um, Is kind of, kind of now in 20 years, we&#8217;ll, we&#8217;ll be able to get from your point of view in like the mid midterm, you know, like the, the golden years, not the golden years.</p>\n\n\n\n<p>The, uh, kind of a golden age we&#8217;re entering into, uh, WordPress right now. So very, very excited to have you back along with everyone else in a few years and see, and see if your MacBook survives so we can talk to you a little bit more. So I wanted to, I What&#8217;s that?</p>\n\n\n\n<p>Maestro Stevens: Just, um, just to touch on what you just said real quick, I think that, um, based on what everybody has talked about, cause you just made a good point.</p>\n\n\n\n<p>So if I can give any context, like I&#8217;m not an old schooler here, so I&#8217;m really trying to help with different type of, um, generation and new type of people. I&#8217;m just keeping them 100% honest with you. That&#8217;s the way, reason why I&#8217;m, I&#8217;m, I coin myself and I&#8217;m called the fresh Prince of WordPress because I&#8217;m trying to give a fresh perspective.</p>\n\n\n\n<p>Oh, a lot people have no idea.</p>\n\n\n\n<p>David Bisset: Does that make me the, um, Carlton I.</p>\n\n\n\n<p>Maestro Stevens: Uh, that was a good one. I see where you&#8217;re going with that one. I know Will Smith here. I don&#8217;t slap people. Alright. Um, but still, uh, the whole point was is that people don&#8217;t know that it has evolved a lot and there is a lot of people trying to enter into, uh, WordPress without that understanding that it&#8217;s not what it used to be.</p>\n\n\n\n<p>So I love having conversations with people like you all, cause I get both perspectives. I get people who have been there for 10, 20 years. Like if you have never heard of it trying to get it in and they&#8217;re like, I can&#8217;t do all that development stuff and all that code stuff and all that, and I have to teach them.</p>\n\n\n\n<p>Like, it&#8217;s not that it&#8217;s not the same, you have that opportunity, but it&#8217;s not that. So I think that this is fun.</p>\n\n\n\n<p>David Bisset: Yeah. And I, I. Maister and I, this is the first time we&#8217;ve been face-to-face. I, he actually reached out to an invitation that I left on Black Press, which again is one of the many examples of how the community is trying to address, um, all the different aspects of that it, that it can in terms of diversity and outreach and finding new people, young, old, whatever.</p>\n\n\n\n<p>And I really appreciate you reaching out to me through there. Um, It&#8217;s, it&#8217;s great to have all these different kinds of channels. Um, at least it it, because not everybody is on post status. Not everybody is on Twitter. Not everybody is here for various reasons. We can only, we can only be in so many channels at once.</p>\n\n\n\n<p>Right. And it&#8217;s personal to us. So, you know, I&#8217;m in my channels because it mean, you know, it&#8217;s because of me. My, my livelihood, my background. I&#8217;m in these certain places. I can&#8217;t be everywhere. And everybody else is different. But we overlap in such ways that finding you in finding you in that area was, was, was a very, very, very thankful that you reached out.</p>\n\n\n\n<p>Um, cuz otherwise we wouldn&#8217;t have that kind of perspective and viewpoint from from, from that. So, anyway, I&#8217;m gonna go around and we&#8217;re just gonna close out. It was great having you all. And I want you, you can mention where people can find you on social or, you know, or, or, or whatever you wanna mention to bring up.</p>\n\n\n\n<p>We&#8217;ll, we&#8217;ll start with Rupa first.</p>\n\n\n\n<p>Aurooba Ahmed: All right. Well, I&#8217;m at Aruba pretty much everywhere, including a website, aruba.com. I&#8217;m also the co-host of a fun dev focused, uh, podcast called View Source, if you wanna check that out. View source.fm. And that&#8217;s me,</p>\n\n\n\n<p>David Bisset: Sarah. Uh, it&#8217;s nice to meet you. I appreciate you Ruba coming on.</p>\n\n\n\n<p>And I, I don&#8217;t mean to rush. I&#8217;m just, you get nervous when, when things close down and, um, you know that my kids are still locked in that closet and I, cuz and I really do need to feed them. So I&#8217;m, I&#8217;m not, I&#8217;m not pushing this along, uh, um, by, on purpose, but, you know, I&#8217;m getting a little nervous. Um, Sarah, I don&#8217;t know where, where people can find you.</p>\n\n\n\n<p>Can you help me out on that?</p>\n\n\n\n<p>Sarah Gooding: Uh, you can always find me at the tavern wp tavern.com and I&#8217;m on Twitter at Poly Plummer. I&#8217;m on Mastodon, Facebook, Strava. I&#8217;m on almost every social network, so get ahold of me any way you want. Slack. Um, I&#8217;m on post status and then the WordPress</p>\n\n\n\n<p>David Bisset: Slack. Yes, I&#8217;m on a lot too.</p>\n\n\n\n<p>Anything that doesn&#8217;t have my family, I&#8217;m there. I just wanna also say too special call out to WP Tavern. As far as l i when, I don&#8217;t know when it, I forget when it was established, but it was so early on. I think it&#8217;s, I think WP 2009, it is practically part of WordPress history. It should be put on a podium in terms of, of WordPress history media.</p>\n\n\n\n<p>I think the tavern is, is top of that list. So I really, Sarah, you, we all the WordPress community kind of owes you a debt of gratitude. I know it&#8217;s not an easy job, believe me, I know Jeff was the one who, who started, we&#8217;re gonna have &#8217;em on, on, on the other, on the other podcast. But you have been so instrumental over the years.</p>\n\n\n\n<p>The entire publication has been instrumental over the years, covering the highs and the lows and the detail for the articles. You did a, did a terrific job. I&#8217;ll think Jeff on the other one. But I wanted to thank you personally here. You&#8217;ve been so much a part of the WordPress history just as much as the community and WordPress has.</p>\n\n\n\n<p>Sarah Gooding: So thank you David. I appreciate that.</p>\n\n\n\n<p>David Bisset: Thanks for that. Um, Jess, where people can find you. Oh God, I&#8217;m starting to sound like Yoda. That was barely a sentence.</p>\n\n\n\n<p>Jess Frick: It was great.</p>\n\n\n\n<p>David Bisset: Where people find you bee,</p>\n\n\n\n<p>Jess Frick: where people find me bee, pressable.com, uh, pressable.com for work. Um, you can find me on the socials at renew.</p>\n\n\n\n<p>Be, and I dunno, like, like the other ladies, I&#8217;m pretty much everywhere, so not hard to find. Okay. Not too many Jessica Fricks running around in WordPress. Oh, well that&#8217;s, that probab not too many Fricks in general, but</p>\n\n\n\n<p>David Bisset: if, if I had enough energy, I could comment on that. Maestro. I know, Maestro,</p>\n\n\n\n<p>Jess Frick: I tune it up for you.</p>\n\n\n\n<p>David Bisset: Thank you. And I missed as usual, Maestro, where can people find you?</p>\n\n\n\n<p>Maestro Stevens: I&#8217;ll piggyback off of Jessica. There&#8217;s not many people with the name Maestro Stevens. So if you Google me, I&#8217;m the one and only, um, and if you wanna find me, just look for me on LinkedIn.</p>\n\n\n\n<p>David Bisset: Okay, that&#8217;s fine. Fantastic. You&#8217;re avoiding most of the socials like I should be doing right now.</p>\n\n\n\n<p>I, and, um, I, if anybody wants to find me, um, as long as you&#8217;re not delivering papers to me, my, uh, you can find me, um, at david bi.com or David bi.social. Um, that&#8217;s where I pull all my social media into one WordPress website. So in case. Certain social media websites cease to exist, at least my post will be there.</p>\n\n\n\n<p>You can also find me on post status and, um, I am doing a little, uh, news website called WP front.page. So, uh, with WordPress News with my daughter as we experiment. A little bit of that, if that&#8217;s, you may be able to, that still might be around by the time you listen to this, so go ahead and check that out.</p>\n\n\n\n<p>Again, I want to thank my, my panelists. You&#8217;ve been great sports. We&#8217;re gonna have links to everything they talked about in the show notes for this. Um, and thanks again everybody. Thank you. All right, you have fun.</p>\n</div>\n\n\n\n<p>Today is a little bit of a departure for the podcast. It&#8217;s an episode all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Sarah Gooding, Aurooba Ahmed, Masestro Stevens and Jess Frick, with David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover many topics, and it&#8217;s great to hear so many varied opinions about what&#8217;s been of importance in the evolution of WordPress.</p>\n\n\n\n<p><strong>Notes from David Bisset:</strong></p>\n\n\n\n<p>To honor WordPress’s 20th anniversary I sit down with four community members to talk about some highlights in its history.</p>\n\n\n\n<p>Primary topics include: </p>\n\n\n\n<ul>\n<li>Memorial WordPress Release</li>\n\n\n\n<li>A WordCamp or WordCamp Experience</li>\n\n\n\n<li>The most notable State of the Word Announcement</li>\n</ul>\n\n\n\n<p>Guests also share other moments that stood out to them and what the future might hold.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Discussion subjects and links:</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Sarah Gooding</h4>\n\n\n\n<p><a href=\"https://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors\">https://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-5-0-targeted-for-december-6-prompting-widespread-outcry-ahead-of-wordcamp-us\">https://wptavern.com/wordpress-5-0-targeted-for-december-6-prompting-widespread-outcry-ahead-of-wordcamp-us</a></p>\n\n\n\n<p><a href=\"https://vancouver.wordcamp.org/2012/\">https://vancouver.wordcamp.org/2012/</a></p>\n\n\n\n<h4 class=\"wp-block-heading\">Aurooba Ahmed</h4>\n\n\n\n<p>Memorable WordPress release:<br /><a href=\"https://wordpress.org/documentation/wordpress-version/version-3-0/\">https://wordpress.org/documentation/wordpress-version/version-3-0/</a></p>\n\n\n\n<p>Memorable WordCamp:<br /><a href=\"https://calgary.wordcamp.org/2016/\">https://calgary.wordcamp.org/2016/</a></p>\n\n\n\n<p>Memorable SOW:<br /><a href=\"https://wordpress.org/news/2019/12/state-of-the-word-the-story-of-the-slides/\">https://wordpress.org/news/2019/12/state-of-the-word-the-story-of-the-slides/</a></p>\n\n\n\n<p>Presentation was made in Gutenberg:<br /><a href=\"https://videopress.com/v/0uD813PN?at=2398\">https://videopress.com/v/0uD813PN?at=2398</a></p>\n\n\n\n<p>The WooCommerce acquisition:<br /><a href=\"https://ma.tt/2015/05/woomattic/\">https://ma.tt/2015/05/woomattic/</a></p>\n\n\n\n<p>Sarah’s talk at BuddyCamp:<br /><a href=\"https://twitter.com/buddycampyvr/status/251181980731985920\">https://twitter.com/buddycampyvr/status/251181980731985920</a></p>\n\n\n\n<p>Phase 3 deets in SOW:<br /><a href=\"https://www.youtube.com/live/QI3qCoiuG3w?feature=share&t=297\">https://www.youtube.com/live/QI3qCoiuG3w?feature=share&amp;t=297</a></p>\n\n\n\n<h4 class=\"wp-block-heading\">Jess Frick</h4>\n\n\n\n<p>WP 5.6 all-women and non-binary identifying release squad:<br /><a href=\"https://wordpress.org/news/2020/12/simone/\">https://wordpress.org/news/2020/12/simone/</a></p>\n\n\n\n<p>Orlando WordCamp 2015:<br /><a href=\"https://orlando.wordcamp.org/2015/\">https://orlando.wordcamp.org/2015/</a></p>\n\n\n\n<p>Orlando WordCamp 2018:<br /><a href=\"https://orlando.wordcamp.org/2018/\">https://orlando.wordcamp.org/2018/</a></p>\n\n\n\n<p>State of the Word 2018:<br /><a href=\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\">https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor</a></p>\n\n\n\n<h4 class=\"wp-block-heading\">Masestro Stevens</h4>\n\n\n\n<p>WordPress Marketing Problem:<br /><a href=\"https://youtube.com/watch?v=7x74kWqWMDY&t=2545\">https://youtube.com/watch?v=7x74kWqWMDY&amp;t=2545</a></p>\n\n\n\n<p>Modern marketing with WordPress for minority-owned businesses:<br /><a href=\"https://wordpress.tv/2021/05/28/maestro-stevens-modern-marketing-with-wordpress-for-minority-owned-businesses/\">https://wordpress.tv/2021/05/28/maestro-stevens-modern-marketing-with-wordpress-for-minority-owned-businesses/</a></p>\n\n\n\n<p>How Savvy Entrepreneurs Automate WordPress Maintenance Tasks with Maestro Stevens:<br /><a href=\"https://www.youtube.com/watch?v=0_rft3t-HMM&pp=ygUYbWFlc3RybyBzdGV2ZW5zIHdvcmRjYW1w\">https://www.youtube.com/watch?v=0_rft3t-HMM&amp;pp=ygUYbWFlc3RybyBzdGV2ZW5zIHdvcmRjYW1w</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, 18 May 2023 14:56:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:74:\"Do The Woo Community: Woo AgencyChat with Krešimir Končić from Neuralab\";s:7:\"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=75157\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://dothewoo.io/woo-agencychat-with-kresimir-koncic-from-neuralab/\";s: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:437:\"<p>For our first Woo AgencyChat, Krešimir brings some really cool insights and experiences working with enterprise clients with WooCommerce.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-with-kresimir-koncic-from-neuralab/\">Woo AgencyChat with Krešimir Končić from Neuralab</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, 18 May 2023 08: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: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:76:\"WPTavern: WordPress 6.2.1 Update Breaks Shortcode Support in Block Templates\";s:7:\"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=145145\";s:7:\"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:87:\"https://wptavern.com/wordpress-6-2-1-update-breaks-shortcode-support-in-block-templates\";s: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:5412:\"<p>WordPress 6.2.1 was released yesterday and rolled out to sites with automatic background updates enabled. The update included five important security fixes. Ordinarily, a maintenance and security release can be trusted not to break a website, but many users are struggling after 6.2.1 <a href=\"https://core.trac.wordpress.org/changeset/55766\">removed shortcode support from block templates</a>.</p>\n\n\n\n<p>A <a href=\"https://wordpress.org/support/topic/wordpress-v6-2-1-breaks-the-shortcode-block-in-templates/\">support forum thread</a> tracking the broken shortcodes issue shows that this change impacts how plugins display things like breadcrumbs, newsletter signup forms, WPForms, Metaslider, bbPress content, and more. The problem affects template blocks, not sites that are using non-FSE themes.</p>\n\n\n\n<p>&#8220;It’s absolutely insane to me that shortcodes have been removed by design!&#8221; <a href=\"https://profiles.wordpress.org/camknight/\">@camknight</a> said in the support forum discussion. &#8220;Every single one of our agency’s FSE sites uses the shortcode block in templates for everything: filters, search, ACF &amp; plugin integrations. This is chaos!!&#8221;</p>\n\n\n\n<p>Another user, <a href=\"https://profiles.wordpress.org/asjl\">@asjl</a>, reports having this update break hundreds of pages.</p>\n\n\n\n<p>&#8220;I’ve got the same problem on over 600 pages which use five or six different templates with shortcodes in each template on one site and similar things on several others,&#8221; <a href=\"https://profiles.wordpress.org/asjl\">@asjl</a> said.</p>\n\n\n\n<p>&#8220;I’m looking forward to editing each of those pages to get the shortcode back in place. Or backtracking to 6.2 and turning off updates.&#8221;</p>\n\n\n\n<p>It&#8217;s not clear why shortcode blocks that are in block theme template parts still work, but this is one workaround that has been suggested to users. In a trac <a href=\"https://core.trac.wordpress.org/ticket/58333\">ticket</a> for the issue others have suggested adding a PHP file for a plugin called &#8220;Shortcode Fix&#8221; to the plugins folder, but <a href=\"https://core.trac.wordpress.org/timeline?from=2023-05-17T00%3A42%3A41Z&precision=second\">this workaround</a> reintroduces the security issue.</p>\n\n\n\n<p>Other users are being forced to revert to previous insecure versions of WordPress in order to keep critical functionality on their sites working. WordPress developer Oliver Campion commented on the Trac ticket with more details about how sites are currently using shortcodes in templates:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This update has been nothing short of a disaster. I cannot understand how there was no warning of such a destructive, automatic roll out!</p>\n\n\n\n<p>We have managed to rollback affected sites to v6.2 and block automatic core updates until there is a suitable solution, which we hope is imminent due to the reported security issues!</p>\n\n\n\n<p>Shortcode Blocks, in our opinion, are absolutely essential to the design process when using Block Themes.</p>\n\n\n\n<p>We use them to inject classic menus that can have dynamic menu items (such as sign out), dynamic header content, specialized loops and footer content that’s as simple as showing the current year in the copyright statement to showing a contact form or other such dynamic content. And that’s just what I can think of from the top of my head.</p>\n</blockquote>\n\n\n\n<p>An unfortunate consequence of this update is that it has destroyed many users&#8217; confidence in WordPress&#8217; automatic updates. This kind of breaking change should never happen in a release that auto installs overnight. </p>\n\n\n\n<p>Even if it&#8217;s absolutely necessary to avoid a zero-day vulnerability on WordPress sites, discontinued shortcode support in block templates should have been accompanied with more information to help affected users find a solution.</p>\n\n\n\n<p>The only communication users received about this was a short, inadequate note on the vulnerability in the 6.2.1 release post  &#8220;Block themes parsing shortcodes in user generated data.&#8221;</p>\n\n\n\n<p>Fixing all of these shortcode uses on websites that heavily rely on them would already have been a challenge for many, even with advance notice. Shipping this breaking change in an automatic update, without a proper explanation of how it impacts users, only served to twist the knife.  </p>\n\n\n\n<p>During today&#8217;s core dev meeting, WordPress 6.2.1 co-release lead Jb Audras <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1684354239647849\">said</a> this issue may prompt a quick 6.2.2 release but the details are not yet available.</p>\n\n\n\n<p>&#8220;As you may know, one security fix led to an important issue with shortcodes used in templates,&#8221; Audras said. &#8220;The issue is currently actively discussed in the Security Editor team, and some hypothesis have been made to sort this out in a quick follow-up release.</p>\n\n\n\n<p>&#8220;No schedule available for now &#8211; it will depend on the follow-up patch currently discussed by the Editor team.&#8221;</p>\n\n\n\n<p>In the meantime, those who cannot employ a workaround and are looking to rollback to 6.2 can can use the <a href=\"https://wordpress.org/plugins/wp-downgrade/\">WP Downgrade</a> plugin as a temporary fix, with the knowledge that this leaves the site vulnerable until a permanent solution can be put in place.</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, 17 May 2023 21:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:61:\"BuddyPress: What new features will be coming to BuddyPress?\";s:7:\"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=329672\";s:7:\"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://buddypress.org/2023/05/what-new-features-will-be-coming-to-buddypress/\";s: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:6890:\"<p>Hello, here‘s the third post of our series about the new direction we plan to take regarding plugin maintenance and evolutions. In our&nbsp;<a rel=\"noreferrer noopener\" href=\"https://buddypress.org/2023/04/buddypress-has-a-new-purpose/\" target=\"_blank\">first post</a>&nbsp;we shared with you our new purpose « Get together safely,&nbsp;<strong>in&nbsp;your own way</strong>, in WordPress »; in our&nbsp;<a rel=\"noreferrer noopener\" href=\"https://buddypress.org/2023/05/lets-better-organize-the-buddypress-plugin/\" target=\"_blank\">second post</a>&nbsp;we talked about how we think we can&nbsp;<strong>better organize the BuddyPress plugin</strong>.&nbsp;Let’s see how the feedback you shared with us&nbsp;<a rel=\"noreferrer noopener\" href=\"https://buddypress.org/support/topic/what-is-the-most-important-thing-buddypress-is-missing/\" target=\"_blank\">here</a>&nbsp;&amp;&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wptavern.com/buddypress-plugin-usage-declining-remaining-contributors-discuss-path-forward\" target=\"_blank\">there</a>&nbsp;contributed to the BuddyPress features roadmap we‘re&nbsp;thinking about tackling in 2023 &amp; 2024.</p>\n\n\n\n<span id=\"more-329672\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key feedbacks about BuddyPress features</strong>.</h2>\n\n\n\n<ul>\n<li>«&nbsp;<strong>Media</strong>&nbsp;Attachments »</li>\n\n\n\n<li>«&nbsp;<strong>Private</strong>&nbsp;access to members component&nbsp;»</li>\n\n\n\n<li>«&nbsp;<strong>Private</strong>&nbsp;membership management »</li>\n\n\n\n<li>«&nbsp;<strong>Private</strong>&nbsp;conversations revamped&nbsp;to&nbsp;look more like private chats »</li>\n\n\n\n<li>«&nbsp;<strong>Blocks</strong>&nbsp;for all BuddyPress components »</li>\n\n\n\n<li>«&nbsp;<strong>Follow</strong>&nbsp;Feature »</li>\n\n\n\n<li>« Some kind of connection with Woocommerce as much as possible »</li>\n\n\n\n<li>«&nbsp;<strong>Privacy</strong>, social networking, and&nbsp;<strong>following</strong>&nbsp;features are all missing »</li>\n\n\n\n<li>«&nbsp;<strong>Likes</strong>&nbsp;/ Reactions,&nbsp;<strong>media</strong>&nbsp;posting, hashtags, user activity as main activity page,&nbsp;<strong>suggestions</strong>&nbsp;like who to befriend and what groups to join »</li>\n\n\n\n<li>« A complete&nbsp;<strong>Groups hierarchy</strong>&nbsp;with&nbsp;(multiple)&nbsp;parents, siblings and child groups »</li>\n</ul>\n\n\n\n<p>Have I told you, we absolutely need to build some privacy features <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" />?</p>\n\n\n\n<p>Considering the WP Blocks API, I’ve personally been following the great work the&nbsp;<a target=\"_blank\" href=\"https://github.com/WordPress/gutenberg/graphs/contributors\" rel=\"noreferrer noopener\">Gutenberg team</a>&nbsp;has accomplished since WordCamp Europe 2017. I was in the huge room when&nbsp;<a target=\"_blank\" href=\"https://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\" rel=\"noreferrer noopener\">Matt announced the feature as a plugin was ready to be tested</a>;&nbsp;it’s a game changer and I’m totally in favor of going full blocks in BuddyPress.</p>\n\n\n\n<p>I believe, as a WordPress plugin, we need to be exemplary,&nbsp;making sure BuddyPress is playing as nicely&nbsp;as possible with the Gutenberg project improvements progressively included in WordPress Core.</p>\n\n\n\n<p>We already have a dozen of blocks available across our components,&nbsp;and,&nbsp;although we’re not currently fully enjoying Block templates, we&nbsp;have&nbsp;made sure you can safely activate Block themes and carry on having your community content injected into this next generation of templates thanks to our dear BP Theme Compatibility API.</p>\n\n\n\n<p>We’ll make 2 or 3 more significant steps in 2023 in the « Blocks » direction with our&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/bp-attachments\" target=\"_blank\">Attachment Add-on</a>, an&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/bp-activity-block-editor\" target=\"_blank\">Activity editor based on the WP Block API</a>,&nbsp;and,&nbsp;if we can increase&nbsp;the&nbsp;time &amp; energy&nbsp;contributors can&nbsp;dedicate to BuddyPress, we’ll build a&nbsp;<strong>brand new &amp;&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/buddyvibes\" target=\"_blank\">modern BuddyPress block theme</a></strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a8.png\" alt=\"?\" class=\"wp-smiley\" /> before the end of next year.</p>\n\n\n\n<p>This last point is a very important step as you’ll be able to customize your community pages within the Site Editor of your WordPress dashboard. I’m convinced the faster we « <strong>blockify</strong> » BuddyPress, the sooner we’ll differentiate ourselves fromour competitors. If you’re a theme designer or interested in theming community sites, join us to explore new territory: <strong>contribute to the next BuddyPress Block theme</strong>.</p>\n\n\n\n<p>About the follow, likes or a better performing favorite features, the team is <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"?\" class=\"wp-smiley\" /> interested about being able to provide a solid API to establish relationships between a wide variety of objects (users,posts, activities, groups, etc…), we thought we could have <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/bp-relationships\" target=\"_blank\">put something together</a> about it to implement a follow functionality but unfortunately the project leader had no available time to make it happen. <strong>Who’s volunteering to take this over?</strong></p>\n\n\n\n<p>More globally, I can ensure you all, we’re fully open to building great new features <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f929.png\" alt=\"?\" class=\"wp-smiley\" />. We can provide tools, expertise, code reviews or simply code, experience, etc, but we do need a lot more&nbsp;<strong>contributor time, energy &amp; motivation</strong>&nbsp;(in&nbsp;particular&nbsp;we need&nbsp;newcomers).</p>\n\n\n\n<p>Using our&nbsp;<strong><a href=\"https://buddypress.org/2023/05/lets-better-organize-the-buddypress-plugin/\">new way of&nbsp;<em>BuddyPressing</em></a></strong>: a&nbsp;more compact&nbsp;Core plugin and external Add-ons,&nbsp;<strong>we have the freedom to code</strong> without overthinking about whether it should be included into Core or not.</p>\n\n\n\n<p>Our next post of this series will go deeper into the BuddyPress user interfaces (theme / administration / mobile) your feedback confirmed we should improve.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong>Props</strong>: 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:\"Wed, 17 May 2023 19:19:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:84:\"WPTavern: #76 – Alex Standiford on How WordPress and the Fediverse Can Be Combined\";s:7:\"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=145065\";s:7:\"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:98:\"https://wptavern.com/podcast/76-alex-standiford-on-how-wordpress-and-the-fediverse-can-be-combined\";s: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:58465:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: 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 the Fediverse can be integrated with your WordPress website.</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 show, I&#8217;m very keen to hear from you and hopefully get you all your idea featured soon.</p>\n\n\n\n<p>Head over to WPTavern.com forward slash contact forward slash jute box and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Alex Standiford. He&#8217;s a web developer originally from Dover, Ohio, and has been tinkering with web technologies for years, but started his career as a web developer in 2015. He&#8217;s a digital nomad, living in a camper with his family for the last three years.</p>\n\n\n\n<p>Alex has built WordPress plugins, websites and web applications, and is an active contributor to the WordPress community, making updates to documentation errors and participating in the organization of WordCamps.</p>\n\n\n\n<p>If you&#8217;re a user of social media, it&#8217;s likely that at some point you&#8217;ve signed up for platforms like Twitter, Facebook, and possibly one of the many other options out there. These platforms enable you to post content and have it seen by people all over the world. In effect, this is what your WordPress website does. But we all know that social media has managed to replace the traditional blog for many people. The notion of writing a blog post can seem like a lengthy enterprise. Whereas a social media post is often quicker to write and gets pushed to the platforms users automatically.</p>\n\n\n\n<p>In the podcast, Alex explains how he&#8217;s noticed the shift over time in his own content creation. He&#8217;s put less effort into his WordPress site and has posted most of his ideas on social platforms.</p>\n\n\n\n<p>This however is something that Alex has decided to stop doing. For a variety of reasons, he wants to take back control of his own content and make his website the centerpiece of his endeavors.</p>\n\n\n\n<p>Recently, Alex stumbled upon Mastodon. It&#8217;s an open source platform which is built on top of the ActivityPub protocol. ActivityPub allows anyone to create their own social networking software, which can interact with any other software using ActivityPub. This is what Mastodon on is, but as you&#8217;ll hear, it&#8217;s not the only software. There are many flavors of ActivityPub, which can all communicate with one another. And this ecosystem is broadly called the Fediverse.</p>\n\n\n\n<p>Alex talks about why he&#8217;s decided to delete many of his old social media accounts in favor of open solutions. And how he&#8217;s using plugins and his own coding skills to make it possible for crossposting of posts and comments between Mastodon on and his WordPress site.</p>\n\n\n\n<p>It&#8217;s a really interesting conversation about the recent surge in popularity of these distributed social networks, and how WordPress can become a first class citizen in your digital life; so much more than just a website.</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 Alex Standiford.</p>\n\n\n\n<p>I am joined on the podcast today by Alex Standiford. How are you doing, Alex?</p>\n\n\n\n<p>[00:04:33] Alex Standiford: I&#8217;m great, Nathan, thanks.</p>\n\n\n\n<p>[00:04:35] Nathan Wrigley: This is going to be a conversation which is really up my street. It may be a new project for you if you are listening to this, but it may be something that you are familiar with but haven&#8217;t really dug into.</p>\n\n\n\n<p>Over the last six months or so, I&#8217;m going to say, there&#8217;s been a real interest in Mastodon as an alternative social network to Twitter. For a variety of reasons people have brought into question in their own minds whether or not they want to migrate to a different platform. And Mastodon, as we&#8217;re going to find out, is one such platform.</p>\n\n\n\n<p>Alex has been doing an awful lot of thinking about how this may work, and combining all of that work with WordPress. But before we get stuck into the weeds of that, Alex, I wonder if you wouldn&#8217;t mind giving us a few moments just to orientate people. Tell us who you are. What company you work for. What projects you&#8217;ve been on. How are you in any way related to WordPress.</p>\n\n\n\n<p>[00:05:34] Alex Standiford: Sure. My name&#8217;s Alex. I&#8217;ve been a WordPress developer since 2014. A WordPress user since 2009. I travel full-time with my family and a camper. We go all over the country. We&#8217;ve been doing it for about three years now. And I work for GoDaddy full-time, and then every once in a while I&#8217;ll take on fun little freelance gigs, I call snacks. But aside from that, it&#8217;s mostly just full-time working for GoDaddy and traveling the country, the United States that is. And, you know, thinking about the Fediverse.</p>\n\n\n\n<p>[00:06:03] Nathan Wrigley: Do you want to just encapsulate what the Fediverse is because, I think many people, this may be a new term. It really doesn&#8217;t encapsulate particularly well what it is. So, first question I guess is what is the Fediverse?</p>\n\n\n\n<p>[00:06:17] Alex Standiford: I kind of wonder if in 10 years they&#8217;re going to look at it, that phrase, in the same way that we looked at the phrase blogosphere, right? Blogosphere, like a while back. It&#8217;s similar to that in a lot of ways. So basically it&#8217;s just where people are, connecting and able to talk to each other socially. Similar to the way that, back then, with a blog post would work. Where you write a blog post and you add an RSS feed and those feeds would integrate with each other and they would like aggregate on different aggregator sites and things like that. Like it was all a part of this way to share content, right?</p>\n\n\n\n<p>Today, there&#8217;s this newer approach that has the same goal as that, but instead of it using aggregators and RSS feeds, it&#8217;s using a specific protocol that allows all of these different social media platforms to communicate with each other. So you can be on a social media platform that kind of looks like Twitter and you can publish something. And somebody who prefers to use a social media platform that works kind of like Instagram can still see it and interact with it completely.</p>\n\n\n\n<p>And there&#8217;s been a lot of push, and interest in this. Actually Automattic just bought a plugin that would allow WordPress to actually integrate and become a part of this system too. So it would basically align with that protocol, and make it possible to allow a WordPress post to be seen natively on anybody&#8217;s social media account, as long as they&#8217;re a part of, as long as whatever system they&#8217;re using uses that protocol.</p>\n\n\n\n<p>So again, if I publish something on WordPress, somebody who&#8217;s using a Twitter like experience for social media, could see that post. Respond to it through their app, through their social media account, and it would actually read as a reply on that blog post as a comment. And that if you responded to it, it would then turn around and go back to that person&#8217;s post and send them a response. So it allows you to kind of integrate these different ways of publishing content all together with a single cohesive approach.</p>\n\n\n\n<p>[00:08:16] Nathan Wrigley: So I guess Fedi is short for Federation, and the idea is that you can combine multiple different outlets, multiple different sources, and have them all communicating with each other. Now, it&#8217;s interesting, you mentioned Twitter a couple of times there. You said Twitter like, and I guess that&#8217;s an important distinction to draw.</p>\n\n\n\n<p>If we were to rewind the clock, let&#8217;s say 15 years, I think it&#8217;s fairly likely that many of us, if we were into technology and into the internet, our reach there probably would&#8217;ve been our own website, our own blog. And we would&#8217;ve written content there. And that worked. And as you said, there were ways of connecting your content with other people&#8217;s content, but it was log into website, click publish, and you&#8217;re done.</p>\n\n\n\n<p>But slowly the march of convenience and what became known as social media, really, I think for many people, made that something that they didn&#8217;t want to bother in. Because all of a sudden they discovered that all of their friends, relations, colleagues, everybody, were beginning to talk about these proprietary platforms.</p>\n\n\n\n<p>We may talk about Facebook or Twitter, but everybody moved over there and the convenience was, well, everybody&#8217;s there. So you can post things and it can be seen by your friends, colleagues, relations, but it can also be seen by complete strangers. So you have that capability.</p>\n\n\n\n<p>But this seems to be a reaction to that. Now, it may not be, it may be that this technology, the Fediverse and what underpins it, it is just as old. I don&#8217;t know, hopefully you can answer that. But it does seem to be a reaction to that because it has certain different characteristics and features which may be of interest to people who are getting, for want of a better word, fed up with traditional social media. So, I don&#8217;t know if you&#8217;ve got anything to add to that?</p>\n\n\n\n<p>[00:10:06] Alex Standiford: Yeah, so that&#8217;s pretty much right. So the ActivityPub protocol, it&#8217;s not as old, it&#8217;s newer. But it&#8217;s still several years old. But it&#8217;s relatively new compared to the other technologies you&#8217;re talking about there. A lot of the reason why it was created was exactly that.</p>\n\n\n\n<p>The fact that people don&#8217;t want to be isolated and in these individual silos. They want to be able to break out of that and talk to each other. And we kind of lost that between 2007 and 2012, right? Like right at that time where Facebook and Twitter and this true sense of social media really exploded was right at the same time as WordPress blogging was exploding.</p>\n\n\n\n<p>And they were all kind of feeding off of each other. And WordPress was, and always has been very open-minded and open focused. It wants to integrate. It wants to be a part of the party. But it doesn&#8217;t necessarily want to take over. And then you had all these other social media platforms that we&#8217;re doing the opposite of that. They want to take over and they did, right.</p>\n\n\n\n<p>So eventually it got to the point to where, you know, you&#8217;re not even publishing content on your blog anymore, you&#8217;re just publishing it directly on Twitter or something like that. Because a tweet doesn&#8217;t make sense. If you think about it, the original, one of the original intents of a tweet was for it to be this ephemeral, quick little update.</p>\n\n\n\n<p>It wasn&#8217;t really of any serious significant consequence. It was just a little update to let people know, to be in support of blog posts or something that was a longer form that you would write, like an essay or something related to things. Say you&#8217;re going on a trip somewhere and you&#8217;re publishing tweets, right? I call them micro posts now because I&#8217;ve generalized the term.</p>\n\n\n\n<p>And you&#8217;re sending out four or five tweets throughout the day, as you&#8217;re doing things and having this experience. It&#8217;s almost like you&#8217;re micro blogging, right? That&#8217;s literally what it was called. But the idea was that you would then come back and take all that stuff and put it on your blog as a single cohesive complete blog post. But people just stopped doing that. They just skipped that step, right?</p>\n\n\n\n<p>So they would just publish these little tweets, and then all of a sudden WordPress became more of a marketing tool than it did a personal tool to be able to provide personal updates. And that&#8217;s kind of a big thing that I&#8217;ve been thinking about lately is like, how can we make WordPress personal again?</p>\n\n\n\n<p>Because a lot of the people who are using it now are companies, right, businesses. And that&#8217;s great. That&#8217;s an amazing facet of it. But if you look at just WordPress, if you just install WordPress and you just use it as a publishing platform for yourself, it is truly delightful.</p>\n\n\n\n<p>Even the block editor and everything about it. If you just take everything away and, you know, you&#8217;re not trying to install WooCommerce, or Yoast SEO or all these other fancy plugins or anything, anything at all. You&#8217;re just installing WordPress and you&#8217;re just using it to publish content.</p>\n\n\n\n<p>It is actually really awesome. And we&#8217;ve gotten away from that a lot, and I think that this social media stuff and being able to change how we look at our blog can allow us to, not only make more use of our own personal site, but it&#8217;ll also allow us to be able to prioritize the content on our site as well.</p>\n\n\n\n<p>[00:13:01] Nathan Wrigley: Yeah, we&#8217;ll come to all of those different pieces. But one of the things that occurs to me, when people talk about WordPress and building websites on top of WordPress, one of the things that is often touted is, you need to own your content. It needs to be yours. You don&#8217;t want to be behind some sort of gatekeeper who you have no control over. So in the event that that website or that service is shut down, then all of your content disappears.</p>\n\n\n\n<p>And although we&#8217;ve seemed to have settled down, there&#8217;s three or four different rival proprietary social networks out there, which have seemed to have got to the point where they&#8217;re economically sustainable In that journey, I must have signed up to a dozen or more social networks, in air quotes, that just collapsed. You know, they didn&#8217;t make it, and any content that I put there disappeared.</p>\n\n\n\n<p>So there&#8217;s that. But I totally get the point that you make about the fact that people have stopped using, or stopped thinking about using their WordPress website as the centerpiece of all of their content.</p>\n\n\n\n<p>After all, why not just go to Facebook, Twitter, et cetera, and post it there because the audience is already ready made. All of the people are there. But the piece in the jigsaw, which I feel is the clincher for many people who enjoy the Fediverse is the desire to shun the algorithm which is now in existence on those platforms.</p>\n\n\n\n<p>So if you went to the original Facebook and the original Twitter, you had a very different experience to the one that you have now. Now it&#8217;s, there&#8217;s a very complicated algorithm, which in all honesty, I doubt many people understand. But it&#8217;s able to put content in front of you, and I guess some people begin to question, well, why that piece of content? Is it because I&#8217;m really likely to be genuinely interested in that?</p>\n\n\n\n<p>Or is it because that piece of content is likely to engage me further, suck me in further, and make me stay here for a bit longer? And certainly in my life, I&#8217;ve noticed that you get to the end of the day and you analyze what you&#8217;ve achieved that day. And many, many times I&#8217;ve thought to myself, well, I probably spent quite a lot of that day scrolling through things that ultimately I didn&#8217;t want to see, but the algorithm is so sublimely good, that I&#8217;ve ended up staying there.</p>\n\n\n\n<p>So there&#8217;s that piece as well. There&#8217;s that piece, that wish to get away from the algorithm. And so the Fediverse, or at least the technology behind the Fediverse that I&#8217;ve seen thus far, really pushes away the algorithm. It&#8217;s not that. It&#8217;s a linear feed of content and it comprises only of the people that you follow.</p>\n\n\n\n<p>There&#8217;s no clever system trying to game your attention. It&#8217;s just here&#8217;s what you&#8217;ve subscribed to follow. If you unfollow people, you see nothing. And if you follow people, you see their things.</p>\n\n\n\n<p>[00:15:46] Alex Standiford: Right. I heard somebody refer to Twitter as a content refinery. Or not just Twitter, but all the major ones. So Twitter, Facebook, TikTok, all these, as a content refinery. They&#8217;re not necessarily there to give you the content you want. They&#8217;re there to just give you content. And sometimes that&#8217;s not a bad thing.</p>\n\n\n\n<p>I think Chris Coyier, he posted something not long ago that was a really good, I thought it was a really good perspective on it. He said that sometimes he wants the intentional read. He wants the intentional RSS feed and the non algorithmic approach, right? Where it&#8217;s like, this is what I want to look at. I want to be intentional with my choices here. But it&#8217;s a more high energy take on consumption.</p>\n\n\n\n<p>And then he said, but there&#8217;s also times where I&#8217;m like, I&#8217;ve worked all day. I&#8217;m exhausted. And I want to just sit down and chill and watch some funny epic fails on Instagram and scroll for 45 minutes or so. It&#8217;s like low energy. It&#8217;s like, I&#8217;m letting the algorithm just entertain me, right?</p>\n\n\n\n<p>And that&#8217;s not any different than channel surfing or anything like that from the past. But I think it has a place, and I think it&#8217;s separate from where you read your newspaper. They&#8217;re two different things. So, I&#8217;m not necessarily opposed to the idea of an algorithm in Mastodon even. I just don&#8217;t think, I don&#8217;t like that it&#8217;s black box. I want to know how it works. I want to be able to control it and customize it to suit my needs. It should be a tool, not a thing that shoved on me.</p>\n\n\n\n<p>[00:17:08] Nathan Wrigley: Yeah. It is interesting because I imagine there&#8217;s a proportion of people listening to this who will not have heard of the Fediverse and think, oh, that&#8217;s curious. Okay, I&#8217;m interested in exploring that. And equally, there&#8217;ll be a whole bunch of people who say, well, I&#8217;m very happy with the way that Twitter and Facebook and so on serve me content at the moment. It works to my needs and, there&#8217;s no sense of pushing one thing over another, but I guess the impetus of this episode is to explain a little bit about how all that works.</p>\n\n\n\n<p>Which leads perfectly to that question. How does this technology work? What is underpinning it? You mentioned ActivityPub, but also I suppose we should get into the whole disparate nature of it. The fact that this is not one thing. It&#8217;s a bunch of people owning servers independently who connect together. So, if you could get into the how it works piece, that would be good.</p>\n\n\n\n<p>[00:17:56] Alex Standiford: Sure. So, like I said earlier, all of these different social media, pieces of social media software, right? So a Twitter like experience, Instagram like experience, a Facebook like experience, a Medium even, just Medium actually, but different places. They all ultimately integrate with a protocol called ActivityPub.</p>\n\n\n\n<p>And basically to put it really simple, it&#8217;s a standardized way to be able to communicate between these things. So it&#8217;s kind of like REST API, but also on top of that, there&#8217;s this very specific set of ways to describe content. It&#8217;s kinda like RSS. A lot like RSS in that way where, you know, an RSS feed it has a content tag and a title tag and an author tag. Everybody can use these however you see fit. Whatever fits best for you. Whatever your content is in that spot, put it there.</p>\n\n\n\n<p>And it works in that same way, but it also, on top of the consumption perspective, it also works with the ability to be able to interact as well. So it&#8217;s a better version of that. So you end up with other standardized things to be able to like describe a response to this and describe what the content is, and the body and all those other details. I could get into the, more of the complexities of it beyond that, but that&#8217;s the gist.</p>\n\n\n\n<p>So you have this protocol and then Mastodon, which is the Twitter like experience, uses this platform to be able to just talk to the other platforms. Pixelfed, for example, for an Instagram like experience. Or PeerTube even for YouTube.</p>\n\n\n\n<p>So you have all these different ones and then, each one of these, that&#8217;s just the software, right? So if you think about it like WordPress, because even WordPress can fit into this category too, of different pieces of software that work with the ActivityPub. But you still need hosting. You still need to be able to host it, right?</p>\n\n\n\n<p>So some of these software, they&#8217;re built to work like Twitter or Instagram, where it&#8217;s one server and it&#8217;s hosting thousands of people. And obviously it&#8217;s impractical. One server can&#8217;t hold the entirety of Twitter&#8217;s accounts. To be able to do this in a way that doesn&#8217;t require ads and allows people to be able to volunteer and donate and support it, is they break it down into smaller servers.</p>\n\n\n\n<p>So instead of it being one single piece of Mastodon software runs Mastodon for everybody, it&#8217;s several thousand servers are all running the Mastodon software and they&#8217;re all talking to each other, exactly like they would as if using the ActivityPub protocol.</p>\n\n\n\n<p>So, you&#8217;ve got Mastodon that has all these servers and they&#8217;re all talking to each other through what&#8217;s called Federation, right. Through this protocol, back and forth. And then they&#8217;re also able to talk with other servers that are running different software. Because they don&#8217;t really care what the software is. All they care about is the protocol, and they&#8217;re all able to just connect with each other and talk. And that&#8217;s really what the Fediverse is, in the technical sense.</p>\n\n\n\n<p>[00:20:53] Nathan Wrigley: I feel that one of the difficulties that I&#8217;ve experienced anyway, with people trying to get on board the Fediverse, is they have this notion that because Facebook&#8217;s a platform and you are always going to facebook.com to log in. And the same for Twitter. It&#8217;s a little bit of a, there&#8217;s a bit of cognitive dissonance going on when you realize, well, I can&#8217;t go to mastodon.com and sign up for an account over there. I need to go to some other smaller entity. But that&#8217;s the point. There&#8217;s loads of them, thousands of them, as you described. They all talk to each other.</p>\n\n\n\n<p>But you&#8217;ve got to, you&#8217;ve got to pick a place to begin. But one of the things that you can do is you can port your account, you can move it from a particular server to another server. But also, because of the free and open source nature of the software, certain servers can decide rules for themselves, which may be exactly what you want to hear. It may be music to your ears that this particular server, allows this kind of content, but not this kind of content.</p>\n\n\n\n<p>This particular server will communicate with this one, but we&#8217;ve made a decision for various reasons that the content that&#8217;s being created over on that server is something that we don&#8217;t want to see. So it adds all that complexity, but with that complexity comes some wonderful benefits I feel as well.</p>\n\n\n\n<p>[00:22:11] Alex Standiford: For sure. And also, and then if you end up with a bunch of bad actors who spin up a server and they&#8217;re trying to like, cause some kind of problem. Cause some drama or spread false information or something through the Fediverse. All the different servers, they can look at that one and say, this server is full of people who are not doing anything but causing problems for my server. I&#8217;m blocking this server. This server can no longer communicate with my server at all.</p>\n\n\n\n<p>And they call it fedi locking. So, what&#8217;s happened a couple of times, this is before me, I&#8217;m still relatively new to all this, but they&#8217;ve had a few scenarios where that exact scenario has happened. Where somebody spun up a server and they were publishing a whole bunch of just garbage, and all the other servers talked to each other, not automatically, but like literally the administrators and everybody were just communicating about the content that was flowing from that place. And said, yeah, this is a problem, we&#8217;ve got to block it. So everybody just blocked it at once and it just completely shut that server down. And it&#8217;s like a fire, you know what I mean? You smother it and it just dies and it goes away.</p>\n\n\n\n<p>[00:23:12] Nathan Wrigley: Yeah. I guess it&#8217;s important to emphasize there that each server is run by an administrator, several administrators, it depends. So it&#8217;s on the server level that that blocking takes place. It&#8217;s not like this cabal of people got together and said, Mastodon, ActivityPub will block this server. No, they&#8217;re blocking it on their own server, the one that they&#8217;re in charge of.</p>\n\n\n\n<p>[00:23:36] Alex Standiford: Right. So if you liked that content for whatever reason, you can be on a server that doesn&#8217;t block it. But the thing I really want to talk about today is the idea of taking this a little bit further and owning your content again, right? Bringing it all back to WordPress.</p>\n\n\n\n<p>Publishing on social media is fantastic. It&#8217;s been an amazing change for me at least. I&#8217;m sure it has been for you, like, it&#8217;s been transformative in how I approach being able to talk to people. I&#8217;ve met so many people as a result of it. It&#8217;s been so good for my career and everything.</p>\n\n\n\n<p>But, the problem is that I, like I said, I stopped publishing on my blog and I stopped doing that because I was putting my blog on a pedestal. I would say this content isn&#8217;t good enough for my blog. This is just a little 25 word post with a picture. This is a small update about me. This isn&#8217;t good enough for my blog. I&#8217;m just going to go throw this on Twitter.</p>\n\n\n\n<p>And what ended up happening was I would publish something on my site once every six months or so. Granted, it&#8217;s polished. It&#8217;s a great article and I&#8217;m proud of everything I&#8217;ve written, well, proud of most things that I&#8217;ve written. But it was so infrequent, right?</p>\n\n\n\n<p>So my site no longer was the singular place where I would send people. I got to the point to where I was basically sending people to my Twitter account instead of my personal site. You know, it makes sense because I am inadvertently creating and publishing the most authentic version of myself on Twitter. On social media. Which is just crazy when I say it out loud.</p>\n\n\n\n<p>If 13 year old me knew that I was capable of building a website and building my own cool little space that was just mine, and didn&#8217;t belong to anybody else, and I wasn&#8217;t publishing absolutely every dang thing that I ever published about myself anywhere but there first, I would&#8217;ve been mad at myself.</p>\n\n\n\n<p>When I was 13, I had a, it was like a, I don&#8217;t know, it was one of those frost fire sites or something. I can&#8217;t remember. It was like a self-hosted. It wasn&#8217;t even self-hosted. It was like you go there, you sign up and you have like frostfire.com/service, or Alex or something. Anyway, it was crazy, right? It had GIFs of like clouds in the background and there was music playing on it. It was terrible because I was a kid and I didn&#8217;t know anything about web design, but I loved it.</p>\n\n\n\n<p>I would go to that all the time and I would check it out and I was like, this is mine. I&#8217;m doing this for me, and I want you to see it, but this is mine. I feel like I&#8217;ve gotten away from that over the years where now I&#8217;m, well not now, but up to recently, I was looking at my site and saying, this is a brand, this is a product. This is for me to be able to put the best stuff on and nothing else.</p>\n\n\n\n<p>And, it wasn&#8217;t an overly personal site. It wasn&#8217;t a, it was just a site that felt inauthentic. It wasn&#8217;t me. And it really bothered me whenever I made that realization.</p>\n\n\n\n<p>[00:26:31] Nathan Wrigley: So in the future that you are imagining, and some of the pieces of this puzzle probably exist already, but some of the pieces of the puzzle that we are going to lay out, have still yet to be created. But the Fediverse allows you to choose to have WordPress as the fulcrum, the centerpiece of Alex&#8217;s digital life.</p>\n\n\n\n<p>And you are imagining a scenario where you could publish things on WordPress. Obviously WordPress has a commenting system. But that content could then be sent to other platforms. Let&#8217;s imagine Mastodon, for example. It could be read over there. But equally, any commentary that happened over on Mastodon would come back and be reflected on your website. And so in this way, the website becomes the centerpiece of it all.</p>\n\n\n\n<p>[00:27:24] Alex Standiford: Yeah, exactly. You publish on your site and it syndicates everywhere else. And that&#8217;s where I&#8217;ve come to, right? So I had a design of my site prior to this one, my current one. It was just a single React site that I built that, all it did was it grabbed content I published from all the different blogs that I publish on. And it pulled them in and it put them on a single feed.</p>\n\n\n\n<p>The idea was I wanted this site to be as easy to maintain as possible. I don&#8217;t want to mess with it. I want it to just be automatic where I publish content. Wherever I publish it, I want it to show up on my site. And I&#8217;ve realized that that&#8217;s kind of backwards, and I want to flip that and get to the point to where I&#8217;m publishing content from my site, and then having it go out.</p>\n\n\n\n<p>Now, the reason why I didn&#8217;t pursue that, and I instead was focused on ingesting that content, bringing it into my site, was because platforms like Twitter and Facebook and Instagram make it very difficult to integrate with them in a way that allows you to be able to obtain that public data, right.</p>\n\n\n\n<p>I&#8217;m publishing a tweet. It&#8217;s public. It&#8217;s available to the public, and yet I can&#8217;t publicly access that stuff via a REST API or an RSS feed or anything like that. Because one, they&#8217;re trying to manage their integrations and trying to maintain their servers to make sure that it doesn&#8217;t get abused.</p>\n\n\n\n<p>But really what it is, is they just don&#8217;t want you to do that. You know what I mean? They don&#8217;t want you to be able to have that. They want you on their platform. They want you looking at ads. They want you there. And for a couple of years now, because I actually hadn&#8217;t even heard of the Fediverse. I&#8217;d been thinking about all this stuff. I hadn&#8217;t heard about any of this, and I was like, man, I really hate this.</p>\n\n\n\n<p>Like, I want to publish on my site first. It was bugging me, driving me nuts, right. And then the Elon Musk, the purchase rather, last year happened and I literally tweeted, because I still even at this moment, didn&#8217;t know about the Fediverse at all. I was like, hey, we&#8217;re developers. Why don&#8217;t we fix this? I&#8217;ve been thinking about this for a long time. I would love to be able to fix this specific problem where I&#8217;m not publishing on my site. I don&#8217;t want to be on Twitter anymore. How can we fix this?</p>\n\n\n\n<p>And somebody was like, well, why don&#8217;t you just use Mastodon? I looked it up and I looked into it, and it was over. That instant, literally that day I switched over. I made an, my entire day was lost. I switched over, I made account. I deleted all my tweets. I exported everything. I deleted all my tweets. I changed my profile name to my Mastodon handle, and added a description and said, I&#8217;ve moved, I haven&#8217;t looked back.</p>\n\n\n\n<p>I haven&#8217;t missed it. I don&#8217;t want it. That&#8217;s not what I want to be. I want my content to come from my website, and I knew that that requires open protocols, open source software, and staying away from these siloed, closed source places like Twitter and Facebook.</p>\n\n\n\n<p>And if I&#8217;m being honest, as a open source WordPress developer, as a person who believes in WordPress and believes in the promise that publishing content should be available for everybody, and things like that. And being able to access and work with that data should be open and, all the fundamental open source values. I have to be on Mastodon.</p>\n\n\n\n<p>It&#8217;s not even a choice, right? Because it&#8217;s simply either you do, you mean it, right? You mean that. You believe this and support this. Or you don&#8217;t. Because if you&#8217;re on Twitter, you don&#8217;t. I just don&#8217;t think you do, because you&#8217;re using a closed source platform to be able to publish content.</p>\n\n\n\n<p>You may be telling yourself that you&#8217;re not, but ultimately you are. And it is completely contrary to WordPress. It doesn&#8217;t want WordPress to exist. It only allows it to exist because it has to and it can&#8217;t get rid of it. Whereas open source things, they want it. They invite it. They welcome this as a part of the whole.</p>\n\n\n\n<p>Even from an identity perspective, that&#8217;s where it hit me. It hit me all the way down to like my very identity on social media. And I was like, I can&#8217;t be on Twitter now that I know this exists. I literally can&#8217;t be. It&#8217;s not even a matter of what&#8217;s better or not. I just can&#8217;t do it.</p>\n\n\n\n<p>[00:31:22] Nathan Wrigley: If we were to try and implement some of the bits and pieces that you&#8217;ve just described, this kind of bidirectional relationship with the Fediverse, Mastodon or Pixelfed or whatever it be. And so you, can push content from WordPress out there, but also that you can consume content from the Fediverse back into, let&#8217;s say, a commenting system on a WordPress post.</p>\n\n\n\n<p>How is that achieved? Now, I know that the goalposts here are moving all the time. It seems like there&#8217;s a whole tranche of developers who are really interested in this and are proposing different things, and there&#8217;s different plugins that are trying to tackle this. Given that we&#8217;re recording this towards the latter part of the beginning of 2023, and caveat emptor, who knows what the state of play will be when anybody listens this.</p>\n\n\n\n<p>Given all of that, what are the plugins that are spiking your interest? It may not be plugins, it may be something else. What are the solutions that you can point people towards to make this possible in a WordPress site?</p>\n\n\n\n<p>[00:32:20] Alex Standiford: You can do it today with the ActivityPub plugin, and that&#8217;s the one that Automattic just purchased recently. They hired a person full-time to be able to take it on and maintain it. Well, actually they hired the developer, the person who built it and just said, going to hire you and you&#8217;re just going to work on this, right.</p>\n\n\n\n<p>It will do those things you&#8217;re talking about. The problem with that plugin, at least today, and I know that this is something that they want to improve. But at least today, the problem is you can&#8217;t actually build a social media feed from it. And what I mean by that is, your blog will have an account, right?</p>\n\n\n\n<p>So anybody can follow your blog account, your website&#8217;s account. Just by going to your address which is basically your username at your account, your website.com, right? But they can access it and they can see the content and they can follow it, they can comment on it, they can boost it, they can do all the things that you can normally do with it on the Fediverse. And you can interact with the comments and how people respond to it. But you personally can&#8217;t follow other people and view their content using your website right now. That to me is kind of the killer limitation that has stopped me from doing that today.</p>\n\n\n\n<p>[00:33:34] Nathan Wrigley: It&#8217;s around the content creation process, not the exploration of what other people are producing. It&#8217;s about you producing and receiving commentary, but not exploring what everybody else is producing, right?</p>\n\n\n\n<p>[00:33:46] Alex Standiford: Right, as I understand it, there&#8217;s a hope that we can get to the point to where both sides of that, both the discovery and the writing side can all happen in a single, cohesive place. But it doesn&#8217;t quite exist yet. That&#8217;s kind of the big, for me personally, that&#8217;s the big limiting factor.</p>\n\n\n\n<p>A lot of people get around it by having a social media account and then manually boosting everything they publish after they publish it. I think that defeats the purpose. But I am doing something that&#8217;s not terribly different, to be honest. The conclusion that I ended up coming to was, I&#8217;m publishing everything on my site, including social media posts and everything.</p>\n\n\n\n<p>And I&#8217;m using a plugin, I can&#8217;t remember the name right now. Let me find it real quick. It&#8217;s called Share on Mastodon. That was pretty easy. So there&#8217;s a plugin called Share on Mastodon that allows you to automatically cross publish content that you publish on your site onto Mastodon.</p>\n\n\n\n<p>And of course, these things exist or existed for Twitter and Instagram and all those other ones. But again, on a closed platform, they&#8217;re kind of difficult to work with and they can just go away at any time. But that&#8217;s neither here nor there.</p>\n\n\n\n<p>The Share on Mastodon plugin will automatically cross publish content you post on your site onto Mastodon. You can filter it. You can customize how the content is published. What format it is, and all that stuff through the plugin via a filter, or several filters really. It&#8217;ll even scan the content and grab the images from the content and attach them in the posts and things like that.</p>\n\n\n\n<p>That&#8217;s been my solution. As of right now, I am active on Mastodon and that&#8217;s it. I don&#8217;t plan on being active anywhere else anytime soon. If I do, it&#8217;ll be on another platform on the Fediverse. But to be honest, there&#8217;s not a huge reason to do it. Once you pick the software you like, the feed can ultimately be the same people. You know what I mean? I&#8217;m not there yet. I&#8217;m finding plenty of people coming to the Mastodon. I&#8217;m good with that.</p>\n\n\n\n<p>I&#8217;ve got my site personally set up to do that. It&#8217;ll auto publish content. But then the other challenge that I ran into with this is the mobile experience, right. Because I&#8217;m not going to open up my website through my phone, open up a post, click add post, and like go through this whole process to be able to publish a micro post, a social media post, right? It&#8217;s supposed to be this small quick thing that just takes a second. I mean, Twitter, originally you were literally texting a phone number, right?</p>\n\n\n\n<p>That&#8217;s why the character counts exist. Limits existed originally and stuff. It was a technical reason. It was because you were just texting a phone number and that added a tweet. So it&#8217;s always supposed to be this quick, you whip out your pocket, something out of your pocket and you send a text message and it should be that quick.</p>\n\n\n\n<p>So to have to go through all of that, I already know that&#8217;s a non-starter. If I have to do that, this is never going to work. So I actually had to design my site around the limitations of the WordPress app today. Which to me, I think is getting that better is as important as getting the connections and everything to the Fediverse setup. Because it&#8217;s very limited on what it can do.</p>\n\n\n\n<p>You can use posts. It supports the block editor, and it&#8217;s fantastic. Don&#8217;t get me wrong. The editing experience is great, but it&#8217;s limited. I can&#8217;t customize that app at all. So whatever that app has in it are the tools that I can use inside a WordPress, to be able to solve my problems.</p>\n\n\n\n<p>That means I can&#8217;t use custom post types. That means I can&#8217;t use custom blocks. I can&#8217;t use custom sidebar widgets inside of the block editor to be able to organize or change my content. I can use categories. I can use tags. And weirdly enough I can use post formats. And that&#8217;s it.</p>\n\n\n\n<p>So, I designed my site to support those, to use those. I&#8217;m actually using post formats on my site. It is the weirdest thing. I don&#8217;t love it. I&#8217;m okay with it, it&#8217;s fine. But I would much rather have a custom post type with a block editor template, right? So that I could create like a image post type and be able to click on it. It&#8217;ll just be a fixed template with an image and a paragraph for me to be able to add text. Like, I would like to lock it down like that, but I can&#8217;t do any of that stuff because I&#8217;m limited by what the WordPress app allows me to do.</p>\n\n\n\n<p>So with those two things, basically now I am whipping out my phone, opening up the WordPress app, tapping on post, clicking, add new posts, typing in my content. And then I&#8217;m setting the post format to aside and adding my tags and hitting publish. And I have a little action that runs in the background that automatically, with that plugin, Share to Mastodon plugin, I&#8217;m hooked into that.</p>\n\n\n\n<p>So whenever my content publishes, if the post format&#8217;s aside, if it&#8217;s a micro post, it automatically shares the body, all of the content in that post. And then it&#8217;ll automatically parse the tags as hashtags. And then it also shares a link to the original posts, as well. So that happens. But then if it&#8217;s an actual blog post, right, it&#8217;ll just take the excerpt and it&#8217;ll do the same thing, but it&#8217;ll take the excerpt instead. Share a link to the original post and the hashtags.</p>\n\n\n\n<p>[00:38:46] Nathan Wrigley: So, being a developer, you&#8217;ve been able to conjure up ingenious, by the sounds of it, ways of overcoming the problems of sharing different types of content. But it feels like that solution is something which you would desire, well, maybe to build yourself, I don&#8217;t know.</p>\n\n\n\n<p>[00:39:03] Alex Standiford: Yeah. The spirit is willing, but the time, there&#8217;s only so many hours. The problem with this is that my theme that I&#8217;m using, it&#8217;s a custom theme. Now, it&#8217;s not a crazy, I mean, okay, yeah, it&#8217;s a pretty crazy setup. It&#8217;s way beyond what a typical person should be expected to use and set up.</p>\n\n\n\n<p>It is mine, 13 year old me, right? This is mine. It&#8217;s for me. I&#8217;m having fun with it. I&#8217;m going to put all kinds of crazy stuff in this. I&#8217;m going to overbuild the crap out of it just because I can, and I want to. But, just a more practical look at this. The big problem with what I just said is the post formats because very few themes, if any themes at all, support post formats today. Because they were marked as, they basically killed them off, right, in favor of custom post types.</p>\n\n\n\n<p>But then they never actually added support for custom post types in the app. So here we are. So you&#8217;re kind of in this weird catch 22 where if you want to do this, you have to figure out how to allow your blog, your website, to be able to actually support post formats again. Which, that isn&#8217;t hard. Actually just telling it, hey, I want to use post formats on posts. That&#8217;s not a big deal. That&#8217;s like four lines of code, no big deal. The problem is the theme support, right? The actual, whenever you&#8217;re going through the loop, actually setting it up to be able to recognize those different post formats and to display them appropriately is a challenge, right? Actually integrating it with the actual content.</p>\n\n\n\n<p>[00:40:30] Nathan Wrigley: It feels at the moment as if, whilst it&#8217;s a lot of fun, you are also saying, it&#8217;s a lot of fun for somebody like me. In the sense that, you know, you&#8217;re a developer, you can overcome these problems. Given all of that, is there still right at this point in time, is there still a benefit do you think, in just throwing on the plugins that are freely available at the moment and going for it, and just working with the limitations?</p>\n\n\n\n<p>Because, again I think if I cast my mind back to the beginning of Twitter. Twitter was nothing like what it is now. It took years and years and years for people to figure out what Twitter would be. For Twitter to figure out what Twitter would be. Facebook the same. It went through this iterative process.</p>\n\n\n\n<p>I remember the Twitter fail whale. It was just a hot mess. 50% of the time, everything I tried to do just died. And so maybe it needs to be viewed with that approach. Yes, you may wish to be a part of the Fediverse, but we&#8217;re at the beginning of the evolution. We haven&#8217;t fully conceived of what that might be. And in the year 2023, 2024, that will become a little bit more solidified. But jump in, have a go with what&#8217;s available right now, developer or no.</p>\n\n\n\n<p>[00:41:36] Alex Standiford: Yeah, I think so. If for no other reason than this. I always told myself that I didn&#8217;t care about the content I was posting on Twitter. Like I didn&#8217;t care a lot about it. I was just posting it because it was easy to post things there. I cared about being a part of a conversation. I treated it like a Slack chat, right? Where it&#8217;s, truly this thing that&#8217;s just going to go away. I don&#8217;t really care if I never see it again, that&#8217;s fine. But Twitter&#8217;s not that, it&#8217;s not. Content never goes away as we&#8217;ve seen, right?</p>\n\n\n\n<p>So, I found that I was, this became especially true whenever we started traveling in the camper because, I was posting all these cool things. These cool like little moments that would happen. Like, I&#8217;ll give you an example. I had a, I was in Taos last summer, and it was like three in the morning, and these donkeys woke us up. And we&#8217;re at my door, and I was like, what are these donkeys doing here? It&#8217;s three in the morning. And I whipped out my phone. I recorded a video. I published a tweet. Didn&#8217;t think anything of it.</p>\n\n\n\n<p>Well, of course that tweet became something that I was linking back to and referencing all the dang time. I didn&#8217;t think anything of that at the time. It didn&#8217;t matter. But then I decided I didn&#8217;t want to be on Twitter and I wanted to leave, and all of a sudden I&#8217;m deciding I&#8217;m deleting all my tweets. And I&#8217;m losing all that. Right, I gave up all that.</p>\n\n\n\n<p>Now I have all that stuff and I hope to someday maybe be able to put it back on my site. But the point is, I wasn&#8217;t owning my content. I wasn&#8217;t doing it right. I wasn&#8217;t doing it well enough. I thought I was, because I was saving the super shiny, amazing blog posts, but I wasn&#8217;t sharing my most authentic self on my site. I wasn&#8217;t even sharing all of my content that I clearly cared about, right?</p>\n\n\n\n<p>Because I thought I didn&#8217;t care about it because I thought that Twitter was just a place for me to chat with people. But it proved to be very much not the case. So now, if nothing else, even if you&#8217;re manually, I mean, for weeks I was manually publishing on WordPress and then turning around and posting it on Mastodon.</p>\n\n\n\n<p>I was doing this manually, and if you literally just hide, you could add a filter onto a theme that doesn&#8217;t support it, and just hide all of the posts that aren&#8217;t, like your aside post type. So, if it&#8217;s a micro post, maybe it literally just doesn&#8217;t show up on your site today. You could still do it, and it would just look funny because it wouldn&#8217;t have a title, but some themes it might look fine. You never know, maybe a couple CSS tweaks and it looks great. But, I think it&#8217;s worth it for no other reason other than owning your content and being true to that fact, right? And truly believing and knowing that you have your stuff and it&#8217;s yours, right?</p>\n\n\n\n<p>For example, my family doesn&#8217;t follow me on Twitter, right? So I had this really cool moment the other day where I shared a personal update about my son and, my site is set up to where my WordPress site happens to also be set up to where it&#8217;s a single WordPress website, but it&#8217;s actually. three different websites that are on the front end. So it&#8217;s actually managing, casualweirdness.life, alexstandiford.com and eventually it&#8217;ll also be managing, WP Dev Academy. So all three of these sites are running through this single site, and it&#8217;s just querying the data based on what site it needs to be.</p>\n\n\n\n<p>So with that, I&#8217;m actually able to not only publish content across the Fediverse, but I&#8217;m also able to publish this personal update. And since it&#8217;s a personal update and it&#8217;s detected that it is, because it&#8217;s using a specific tag, it also automatically just shows up on the feed on casual awareness&#8217; site too, which is a more personal lifestyle blog of my family and me, compared to alexstandiford.com, which is a more holistic look.</p>\n\n\n\n<p>But it was really cool because I had this post, right, I published it, and I was able to send it and just share from alexstandiford.com, this is a post from me about me, that I want to share with you and it&#8217;s got a video on it. I know that seems silly, but there was just something really cool about being able to just share something on a personal level with my family, because I&#8217;ve never done that.</p>\n\n\n\n<p>It&#8217;s always been the blog is the business, right? The blog is buttoned up. I&#8217;m not sharing this content with my family because nobody gives a crap about WordPress until they suddenly decide they want to start a business. So, to be able to just use my site beyond networking needs, and be able to just share it, something like that with my family was really cool. It was this like first moment where I really felt that my site was like an intimate, personal thing, not just a tool.</p>\n\n\n\n<p>[00:45:48] Nathan Wrigley: You really have gone into the weeds of this, haven&#8217;t you? It&#8217;s fascinating listening to all of this, and all of the different ways you&#8217;ve got of consuming the content from three different websites and I would encourage anybody who likes UI and UX, to go and click the little clock icon on the top right of Alex&#8217;s website. You&#8217;re in for a surprise.</p>\n\n\n\n<p>[00:46:05] Alex Standiford: Yeah.</p>\n\n\n\n<p>[00:46:07] Nathan Wrigley: That is something else, bravo. That&#8217;s fun.</p>\n\n\n\n<p>[00:46:09] Alex Standiford: Thank you. Thank you.</p>\n\n\n\n<p>[00:46:11] Nathan Wrigley: One of the things that I suppose people get onto social media for, is for reach. And for that content that they&#8217;re producing to be seen by a bunch of people. How do we feel that&#8217;s going on the Fediverse? For my part, the graph just keeps going up. The user base keeps growing up. Is it logarithmic? No. It&#8217;s more of a linear growth, but it&#8217;s growth nevertheless. What&#8217;s your feeling on that? Because I feel that some people think, well, I can&#8217;t let go of Twitter because I have this business. I&#8217;ve built up a reputation there. I don&#8217;t want to lose all of that. Do you see people moving over slowly? Is that a trend?</p>\n\n\n\n<p>[00:46:43] Alex Standiford: So to answer your question first off, I see more. I see a lot more. Honestly, I saw a lot more in December. It was just almost instantaneous. And maybe it&#8217;s because I found the right server and the right people when I was talking about the right subjects. I&#8217;m not sure.</p>\n\n\n\n<p>It could also just be simply because I joined right at the same time as everybody, a lot of other people who were joining, who were excited about it, and we were all talking about it together. But even now, now that things have calmed down, relatively speaking. I don&#8217;t even notice a difference in terms of engagement, but I can tell you that for a while, I was cross-posting both on Mastodon and Twitter at the same time for a few weeks.</p>\n\n\n\n<p>And every post on Mastodon was consistently getting more engagement than it was on Twitter. And I have half the followers on Mastodon as I do on Twitter. So it&#8217;s definitely more for me. I have like 1800 followers on Twitter, and I think last time I checked I had somewhere around 700 on Mastodon. And it was still, two to three times as much engagement.</p>\n\n\n\n<p>[00:47:37] Nathan Wrigley: Yeah, that&#8217;s amazing. It definitely seems to be growing. We&#8217;ll have to see how this whole Fediverse thing pans out, but it&#8217;s, for the moment at least, it&#8217;s very, very exciting. I do like the idea of creating some system where WordPress sits at the center of all of that, and the ability to create content over there and see it, see the impact of it inside of your WordPress website. Even though the impact, the commentary or whatever, was happening elsewhere.</p>\n\n\n\n<p>If people are interested in this, Alex, and they want to reach out to you because it can be confusing. There&#8217;s a lot of strange pitfalls along the way. What are the best places to reach out to you? Don&#8217;t say Twitter.</p>\n\n\n\n<p>[00:48:16] Alex Standiford: alexstandiford.com of course, is my personal site. So, I&#8217;ve got several blog posts I&#8217;ve written. You&#8217;re invited to ask questions as a comment on there. You can also just reach out to me on the Fediverse on Mastadon. I am @alexstandiford@fosstodon.org. That&#8217;s, you know, a perfectly fine spot to message me to. I check that pretty often. Of course, I&#8217;m on Slack on several different channels like Post Status, so I&#8217;m on Make WordPress as well. You can just message me directly on there too.</p>\n\n\n\n<p>[00:48:42] Nathan Wrigley: Alex, I hope that we&#8217;ll be able to say when 2024 rolls around that this has taken off. Let&#8217;s see how it all lies in a year&#8217;s time. Thank you so much for chatting to us about the Fediverse today. I really appreciate it.</p>\n\n\n\n<p>[00:48:55] Alex Standiford: Yeah, no problem. I appreciate your time. Thanks.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://alexstandiford.com/\">Alex Standiford</a>.</p>\n\n\n\n<p>He’s a web developer originally from Dover, Ohio, and has been tinkering with web technologies for years, but started his career as a web developer in 2015. He’s a digital nomad, living in a camper with his family for the last three years.</p>\n\n\n\n<p>Alex has built WordPress plugins, websites, and web applications, and is an active contributor to the WordPress community, making updates to documentation errors, and participating in the organisation of WordCamps.</p>\n\n\n\n<p>If you are a user of social media, it’s likely that at some point you’ve signed up for platforms like Twitter, Facebook and possibly one of the many other options out there.</p>\n\n\n\n<p>These platforms enable you to post content and have it seen by people all over the world. In effect, this is what your WordPress website does, but we all know that social media has managed to replace the traditional blog for many people. The notion of writing a blog post can seem like a lengthy enterprise, whereas a social media post is often quicker to write and gets pushed to the platform&#8217;s users automatically.</p>\n\n\n\n<p>In the podcast Alex explains how he’s noticed this shift over time in his own content creation. He’s put less effort into his WordPress site and has posted most of his ideas on social platforms. This however is something that Alex has decided to stop doing. For a variety of reasons he wants to take back control of his own content and make his website the centrepiece of his endeavours.</p>\n\n\n\n<p>Recently Alex stumbled upon the Mastodon. It’s an open source platform which is built on top of the ActivityPub protocol. ActivityPub allows anyone to create their own social networking software which can interact with any other software using ActivityPub. This is what Mastodon is, but as you’ll hear, it’s not the only software; there’s many flavours of ActivityPub which can all communicate with one another, and this ecosystem is broadly called the Fediverse.</p>\n\n\n\n<p>Alex talks about why he decided to delete many of his old social media accounts in favour of open solutions, and how he’s using plugins and his own coding skills to make it possible for cross posting of posts and comments between Mastodon and his WordPress site.</p>\n\n\n\n<p>It’s a really interesting conversation about the recent surge in popularity of these distributed social networks and how WordPress can become a first class citizen in your digital life; so much more than just a website.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://www.w3.org/TR/activitypub/\">ActivityPub protocol</a></p>\n\n\n\n<p><a href=\"https://joinmastodon.org/\">Mastodon</a></p>\n\n\n\n<p><a href=\"https://pixelfed.org/\">Pixelfed</a></p>\n\n\n\n<p><a href=\"https://joinpeertube.org/\">PeerTube</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/activitypub/\">ActivityPub WordPress plugin</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/share-on-mastodon/\">Share on Mastodon WordPress plugin</a></p>\n\n\n\n<p>Alex&#8217;s <a href=\"https://casualweirdness.life/\">Casual Weirdness website</a></p>\n\n\n\n<p>Alex&#8217;s <a href=\"https://alexstandiford.com/\">personal website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 May 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: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:87:\"HeroPress: Exploring the Essence of Community – Explorando la esencia de la comunidad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5535\";s:7:\"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:142:\"https://heropress.com/essays/exploring-the-essence-of-community/#utm_source=rss&utm_medium=rss&utm_campaign=exploring-the-essence-of-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19351:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2024/05/051623-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pullquote: This journey through WordPress continues to grow, making me stronger and filling my heart with joy. - En definitiva, mi viaje en WordPress sigue en constante evolución, haciéndome cada vez más fuerte y llenando mi corazón de alegría.\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>Hi, I&#8217;m Ericka Barboza, I&#8217;m a computer engineer, I was born in Costa Rica and it&#8217;s been my home since always. I love nature, plants and bird watching. I enjoy hiking and love going to the beach.</p>\n\n\n\n<p>When I look back and realize that 7 years have passed since I started this journey with WordPress and its community. I realize that time is fleeting.</p>\n\n\n\n<h2 class=\"kt-adv-heading_4ec00a-62 wp-block-kadence-advancedheading\"><strong>How I found the WordPress Community</strong></h2>\n\n\n\n<p>I discovered WordPress in 2006, when I was working as a Web Developer for a digital production services company in Costa Rica. At that time, I created my first blog and as part of my job I had to make modifications to websites made with WordPress. I found it very easy to use.</p>\n\n\n\n<p>However, life took me in a different direction and I followed another career path. I started working in other companies, I worked for a bank and a consulting company, both jobs were not related to WordPress.</p>\n\n\n\n<p>In 2014, I made the decision to become a freelance worker as a web developer in the area of web development and design. I have always been passionate about this field, so I decided to leave my stable job to follow my dream. I wanted to have a better quality of life and more free time to enjoy the days, away from the four walls of an office.</p>\n\n\n\n<p>In that same year, I started working on projects in Drupal, which is another CMS. I also got to know this lovely community and began participating as a volunteer in Drupal Camps. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I loved the idea of belonging to a community of people with common interests and a desire to help others.</p>\n</blockquote>\n\n\n\n<p>In 2016, I heard that the first WordCamp San Jose Costa Rica was going to be held. So, I approached the group of organizers to offer my help. I felt that I had the experience to contribute to the organization of the event because I had already participated as a volunteer in Drupal Camps, and I thought it was a great idea to collaborate with this amazing community as well.</p>\n\n\n\n<p>And that&#8217;s how my journey in the WordPress Community began. I have been an organizer of 4 WordCamps in my country, Costa Rica (2016-2017-2018-2019) in different roles, including Lead Organizer in 2018. And this year, 2023, I joined the organizing team again and I am very excited about it.</p>\n\n\n\n<p>Being an organizer of a WordCamp was one of the most beautiful experiences I have ever had. It&#8217;s a job where you not only volunteer your time to make sure everything goes well, also you put all your heart into the community.</p>\n\n\n\n<p>Once I joined the WordPress Community, there was no turning back. I became more and more involved, and as I learned more, I realized that I wanted to know even more. Being a volunteer in this beautiful community has been one of the best things that has happened to me in my professional journey.</p>\n\n\n\n<h2 class=\"kt-adv-heading_9f961b-2e wp-block-kadence-advancedheading\"><strong>What I love most about WordPress – Community</strong></h2>\n\n\n\n<p>I always tell people that what I love the most about WordPress is its community. From day one, I have found friendly and helpful people who are always willing to share their knowledge and experience. Being part of this community has allowed me to learn new things and tips, and I feel a great sense of belonging to a group of like-minded people with common interests and goals.</p>\n\n\n\n<p>Since 2016, I have not only been an organizer, but also an enthusiastic volunteer in the WordPress Community. As a result, I have had the privilege of volunteering at some international WordCamps.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I have to admit, one of my favorite things about WordCamps is the afterparties.</p>\n</blockquote>\n\n\n\n<p>It&#8217;s that moment when we all come together to network, relax, and even sing karaoke. During the pandemic, I missed the hugs and connections with both old and new friends I made at these events. I am so happy that they are coming back!</p>\n\n\n\n<p>In 2017, I attended my first WordCamp abroad, WordCamp Managua in Nicaragua. I had never been to Nicaragua before and I thought it would be a great opportunity to explore its natural beauty while attending the event. There, I met friendly members of the Nicaragua WordPress Community. I still keep in touch with them and I deeply admire.</p>\n\n\n\n<p>The following year, in 2018, I had a dream of traveling to another WordCamp, but this time even further away from my home country and in a different language. I wanted to experience the global WordPress Community and see for myself how it operated. That&#8217;s why I decided to purchase a ticket and travel to WordCamp Miami 2018. It quickly became one of my favorite camps and holds a special place in my heart.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>WordCamp Miami showed me the other side of the WordPress Community, one that extended far beyond my country&#8217;s borders. </p>\n</blockquote>\n\n\n\n<p>I learned that there were many more people around the world who were doing wonderful work for the community, and that they possessed great talents and expertise to share. There is a whole world out there waiting to be explored.</p>\n\n\n\n<p>During WordCamp Miami, I also had the opportunity to meet companies that sponsored the event, and that&#8217;s where I met GreenGeeks Web Hosting. I now work for them as part of the marketing team. Thanks to my job, I have been able to attend many WordCamps around the world, not only as a sponsor, but also as a volunteer and speaker.</p>\n\n\n\n<p>I am also passionate about being a volunteer at KidsCamp, which is like a camp just for kids that takes place as part of WordCamps. In 2019, I participated as an organizer for the KidsCamp at WordCamp San Jose Costa Rica.&nbsp;</p>\n\n\n\n<p>It was a wonderful experience seeing all those smiling faces of the kids, and I was able to bring my own nephews to participate, which is something I will never forget and will always treasure in my heart.</p>\n\n\n\n<p>Before everything fell apart with the pandemic in 2020, I had the opportunity to attend WordCamp Miami 2020 as a KidsCamp volunteer and Team Leader. I loved the opportunity to volunteer in another country and learned so much from the kids. It was the last thing that the WordPress community gave me before entering the pandemic, and I would do it all over again.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/05/image.png\"><img /></a><em>KidsCamp – WordCamp San Jose Costa Rica 2019</em>\n\n\n\n<h2 class=\"kt-adv-heading_a4150f-8f wp-block-kadence-advancedheading\"><strong>I keep growing with WordPress</strong></h2>\n\n\n\n<p>I am grateful to WordPress and the community for all the professional growth I have acquired in almost 7 years and still counting.</p>\n\n\n\n<p>My job at GreenGeeks has allowed me to travel to different WordCamps around the world, which has given me the opportunity to meet wonderful people and discover new opportunities.</p>\n\n\n\n<p>If it weren&#8217;t for my active involvement in the community and my attendance at events outside of my country, I wouldn&#8217;t have had the opportunity to know this great company, which also shares the love for WordPress and its community. I am excited to continue growing alongside this community and see what new challenges and opportunities arise in the future.</p>\n\n\n\n<p>In the last few years, since 2020, I&#8217;ve been dedicated to running workshops for underrepresented groups in the WordPress community. Together with Jill Binder, Leader of the Diverse Speaker Training group and #WPDiversity, we have run workshops in Latin America specifically for women in the WordPress Community.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This initiative has been incredibly motivating for me, as my goal is to support more women becoming speakers at WordCamps and becoming visible in the world of WordPress and technology as a whole.&nbsp;</p>\n</blockquote>\n\n\n\n<p>It drives me even more to reach women in other communities in different countries and languages, and thanks to the translation of documentation into Spanish, we&#8217;ve taken an important step forward. Working alongside Jill on this project has been one of the best things I&#8217;ve found in this wonderful community.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/05/image-1.png\"><img /></a><em>WordPress Speaker Workshop for Women Voices in Latin America – Costa Rica 2022</em>\n\n\n\n<p>This journey through WordPress continues to grow, making me stronger and filling my heart with joy.<br /><br />I would like to express my gratitude to Topher for giving me the opportunity to share my story. Writing this has allowed me to relive&nbsp; many moments and I appreciate all those who took the time to read it.</p>\n\n\n\n<p>Until next time!</p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading_00d1d6-2d wp-block-kadence-advancedheading\"><strong>Explorando la esencia de la comunidad</strong></h1>\n\n\n\n<p>¡Hola! Soy Ericka Barboza y soy Ingeniera Informática. Nací en Costa Rica, y este ha sido mi hogar desde siempre. Me apasiona la naturaleza, especialmente las plantas y observar las aves. Disfruto mucho caminar por la montaña y me encanta ir a la playa.</p>\n\n\n\n<p>Cuando miro atrás y caigo en cuenta que han pasado 7 años desde que comencé este viaje por WordPress y su comunidad, me hace consciente de lo fugaz que puede ser el tiempo.</p>\n\n\n\n<h2 class=\"kt-adv-heading_4b6b6d-73 wp-block-kadence-advancedheading\"><strong>Cómo encontré a la Comunidad de WordPress</strong></h2>\n\n\n\n<p>Descubrí WordPress en el año 2006 cuando trabajaba como Desarrolladora Web para una empresa de servicios de producción digital en Costa Rica, en ese entonces, creé mi primer blog y como parte de mi trabajo tenía que hacer modificaciones a sitios web hechos con WordPress, me pareció muy fácil de usar.</p>\n\n\n\n<p>Luego, por cosas de la vida, seguí otro camino profesional y comencé a trabajar como Analista en Sistemas en otras empresas, trabajé para un banco y en una empresa de consultoría, en las cuales ninguna tenía nada ver con WordPress.</p>\n\n\n\n<p>En el año 2014, tomé la decisión de convertirme en trabajador independiente como Web Developer en el área de desarrollo y diseño web, siempre me ha apasionado este mundo, por lo que decidí dejar mi empleo estable para seguir mi sueño. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Quería tener una mejor calidad de vida y más tiempo libre para disfrutar de los días, lejos de las cuatro paredes de una oficina.</p>\n</blockquote>\n\n\n\n<p>En ese mismo año, comencé a realizar proyectos en Drupal, otro CMS. Tuve la oportunidad de conocer su bonita comunidad. Comencé a participar en los Drupal Camp como voluntaria y me gustó mucho la idea de pertenecer a una comunidad con personas con intereses en común y deseos de ayudar a los demás.</p>\n\n\n\n<p>Para el año 2016, escuché que se iba a realizar el WordCamp San Jose Costa Rica por primera vez, y fue donde me acerqué al grupo de organizadores para ofrecerles mi ayuda, sentía que tenía la experiencia para contribuir con la organización del evento porque ya había participado como voluntaria en los Drupal Camp, y pensé que era muy buena idea también colaborar con esta gran comunidad.</p>\n\n\n\n<p>Fue así como comenzó mi viaje por la comunidad de WordPress. He sido organizadora de 4 WordCamps en mi país Costa Rica (2016-2017-2018-2019) en distintos roles, en el año 2018 como Lead Organizer. Y este año, 2023, me volví a unir al equipo de organización y estoy muy emocionada.</p>\n\n\n\n<p>Ser organizadora de un WordCamp, ha sido una de las experiencias más bonitas que he vivido, es un trabajo en el cual no solo pones tu tiempo de forma voluntaria para que todo salga de maravilla, sino que también le pones todo tu corazón hacia la comunidad.</p>\n\n\n\n<p>Una vez que entré a la comunidad de WordPress, ya no pude dar vuelta atrás, cada vez me involucraba más, estaba enamorada y entre más conocía me daba cuenta que quería saber más. Ser voluntaria en esta bella comunidad ha sido una de las mejores cosas que me ha pasado en mi camino profesional.</p>\n\n\n\n<h2 class=\"kt-adv-heading_ca697c-7d wp-block-kadence-advancedheading\"><strong>Lo que más amo de WordPress – Comunidad</strong></h2>\n\n\n\n<p>Todo el tiempo le digo a las personas que lo que más me gusta de WordPress, es su comunidad, siempre encuentras personas amigables con deseos de ayudarte, aprendes cosas nuevas y tips del mundo de WordPress, me encanta el significado de comunidad, el sentido de pertenencia a un grupo con intereses y propósitos en común.</p>\n\n\n\n<p>Desde el año 2016, además de ser organizadora siempre he amado contribuir como voluntaria y es por eso que también he tenido el privilegio de ser voluntaria en varios WordCamp internacionales.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Debo confesar que también me gustan mucho los afterparty de los WordCamp, ese momento donde todos hacemos networking, nos relajamos y hasta cantamos Karaoke, esa es una de las partes que más extrañaba con la pandemia, los abrazos, la conexión con los viejos y los nuevos amigos que haces en estos eventos, ¡me alegra mucho que regresarán!</p>\n</blockquote>\n\n\n\n<p>Mi primer WordCamp en el exterior fue el WordCamp Managua 2017, que se realizó en Nicaragua, nunca había estado en Nicaragua, a pesar de ser nuestro país vecino, así que me dije, porque no ir y conocer de paso ese país con su gran belleza natural.</p>\n\n\n\n<p>Conocí a amigables personas de la comunidad de WordPress Nicaragua, con los cuales conservo la comunicación y a los cuales les tengo también mucha admiración.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>En el año 2018, mi sueño era poder viajar a otro WordCamp pero más lejos todavía de mi país y en otro idioma, quería vivir esa experiencia, quería ver cómo era la comunidad global de WordPress, y por eso decidí comprar mi boleto e ir rumbo al WordCamp Miami 2018.</p>\n</blockquote>\n\n\n\n<p>Sin duda, WordCamp Miami es por mucho de mis camps preferidos y al cual le tengo un cariño muy especial, porque fue el camp que me mostró la otra cara de la comunidad de WordPress, la de saber que esa comunidad no solo existe en mi país, sino que hay muchas más personas alrededor del mundo que hacen un trabajo maravilloso por la comunidad, esas personas con gran talento y capacidad para transmitir mucho de su conocimiento, hay todo un mundo allá fuera esperando ser explorado.</p>\n\n\n\n<p>En ese camp, también tuve la oportunidad de conocer a empresas que patrocinaban el &nbsp; evento y fue ahí donde conocí a GreenGeeks Web Hosting, la empresa para la cual trabajo como parte del equipo de Marketing.</p>\n\n\n\n<p>Gracias a mi trabajo en GreenGeeks he podido asistir a muchos WordCamp alrededor del mundo, no solo como patrocinadora en los eventos, sino también he podido coloborar como voluntaria y expositora también.</p>\n\n\n\n<p>Otra de las cosas que me apasiona es ser voluntaria del KidsCamp, que es como un campamento solo para niños que se realiza dentro de los WordCamp. En el 2019 participé como organizadora del KidsCamp en el WordCamp de San José Costa Rica, fue una experiencia maravillosa, ver las caras sonrientes de todos esos niños es algo que te llena el corazón y también pude llevar a mis sobrinos a participar y es algo que nunca olvidaré, lo atesoraré en mi corazón.</p>\n\n\n\n<p>En el año 2020, antes de que todo se derrumbara con la pandemia, tuve la oportunidad de asistir al WordCamp Miami 2020, como voluntaria del KidsCamp, como líder de equipo, amé la oportunidad de ser voluntaria en otro país, aprendí muchísimo de los niños y lo volvería a hacer, fue lo último que me dejó la comunidad antes de entrar en pandemia.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/05/image-2.png\"><img /></a><em>KidsCamp – WordCamp San Jose Costa Rica 2019</em>\n\n\n\n<h2 class=\"kt-adv-heading_a4b68c-f6 wp-block-kadence-advancedheading\"><strong>Continúo creciendo con WordPress</strong></h2>\n\n\n\n<p>Agradezco a WordPress y a la Comunidad por todo el crecimiento profesional y espiritual que he adquirido en estos 7 años y sigo contando.</p>\n\n\n\n<p>Gracias a WordPress y su comunidad, mi vida profesional y personal ha mejorado significativamente en estos 7 años. Mi trabajo en GreenGeeks me ha permitido viajar a diferentes WordCamps alrededor del mundo, lo que me ha dado la oportunidad de conocer personas maravillosas y descubrir nuevas oportunidades.&nbsp;</p>\n\n\n\n<p>Si no hubiera sido por mi participación activa en la comunidad y mi asistencia a eventos fuera de mi país, no habría tenido la oportunidad de conocer esta gran compañía, que también comparte el amor por WordPress y su comunidad. Estoy emocionada por seguir creciendo junto a esta comunidad y ver qué nuevos retos y oportunidades se presentan en el futuro.</p>\n\n\n\n<p>En los últimos años, desde el 2020 en adelante, me he comprometido en la realización de talleres para grupos poco representados en la comunidad de WordPress. Junto con Jill Binder, líder del Grupo de Formación de Oradores Diversos y #WPDiversity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Hemos llevado a cabo varios talleres en Latinoamérica, específicamente para mujeres de la comunidad de WordPress. Esta iniciativa me ha motivado muchísimo, ya que mi objetivo es apoyar a que más mujeres sean expositoras en los WordCamp y Meetups de la comunidad y que se visibilicen en el mundo de WordPress y la tecnología en general.&nbsp;</p>\n</blockquote>\n\n\n\n<p>Me impulsa aún más poder alcanzar a mujeres en otras comunidades de diferentes países e idiomas, y gracias a la traducción de la documentación a español, hemos dado un paso importante. Trabajar junto a Jill en este proyecto ha sido una de las mejores cosas que he encontrado en esta maravillosa comunidad.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2023/05/image-1.png\"><img /></a>WordPress Speaker Workshop for Women Voices in Latin America – Costa Rica 2022\n\n\n\n<p>En definitiva, mi viaje en WordPress sigue en constante evolución, haciéndome cada vez más fuerte y llenando mi corazón de alegría.</p>\n\n\n\n<p>Quiero expresar mi agradecimiento a Topher por brindarme la oportunidad de compartir mi historia, ya que me ha permitido revivir muchos momentos al escribirla. También, agradezco a todos aquellos que han tomado el tiempo para leerla.</p>\n\n\n\n<p>¡Nos vemos!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/exploring-the-essence-of-community/\">Exploring the Essence of Community &#8211; Explorando la esencia de la comunidad</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 May 2023 12:25: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:14:\"Ericka Barboza\";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:76:\"WPTavern: WordPress 6.2.1 Released with Fixes for 5 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=145117\";s:7:\"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:87:\"https://wptavern.com/wordpress-6-2-1-released-with-fixes-for-5-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:1195:\"<p><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1</a> was released today. Those with automatic background updates enabled should see a notice in their email, as updates rolled out earlier today.</p>\n\n\n\n<p>This is a maintenance and security release that includes important fixes for five security vulnerabilities outlined by core contributor and release co-lead Jb Audras: </p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user generated data</li>\n\n\n\n<li>A CSRF issue updating attachment thumbnails</li>\n\n\n\n<li>A flaw allowing XSS via open embed auto discovery</li>\n\n\n\n<li>Bypassing of KSES sanitization in block attributes for low privileged users</li>\n\n\n\n<li>A path traversal issue via translation files</li>\n</ul>\n\n\n\n<p>The patches were backported to WordPress 4.1. Now that these vulnerabilities are public, it&#8217;s recommended that users update immediately. </p>\n\n\n\n<p>WordPress 6.2.1 also includes 20 core bug fixes and 10 fixes for the block editor, all detailed with ticket numbers in the <a href=\"https://make.wordpress.org/core/2023/05/09/wordpress-6-2-1-rc1-is-now-available/\">release candidate post</a>.</p>\n\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:\"Wed, 17 May 2023 03:07: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: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:64:\"Post Status: Launching a WordPress Product in Public: Session 13\";s:7:\"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=149345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-13/\";s: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:30042:\"<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> and <a href=\"https://twitter.com/coreymaass\">Corey Maass</a> discuss the importance of OG (Open Graph) images for social media sharing and branding in WordPress. They highlight the benefits of using OG image templates to create visually appealing and professional content. They also emphasize the need for WordPress professionals to offer variety and customization options to cater to different client needs. Cory and Corey suggest considering pricing models and beta-testing strategies to determine market value and gather feedback. This episode provides valuable insights for WordPress professionals seeking to enhance their services and deliver impactful OG image solutions.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Explore OG image templates:</strong> OG (Open Graph) images are essential for social media sharing and branding. WordPress professionals should consider incorporating OG image templates into their projects to enhance their content&#8217;s visual appeal and professionalism. This could involve adding a logo, screenshots, or other relevant images within browser frames or mobile device mockups. Professionals can easily create engaging OG images that align with their clients&#8217; branding and marketing strategies by utilizing templates.</li>\n\n\n\n<li><strong>Embrace variety and customization:</strong> With the availability of different OG image templates and design options, WordPress professionals should strive to offer their clients a diverse range of choices. By understanding common patterns and elements used in OG images, professionals can create customized templates that cater to various needs, such as showcasing logos, headlines, taglines, or even incorporating screenshots of website pages. The ability to provide personalized options and adapt to different social media platforms will greatly enhance the value of their services.</li>\n\n\n\n<li><strong>Consider pricing and beta testing: </strong>As WordPress professionals develop their OG image solutions, it&#8217;s crucial to think about pricing models and beta testing strategies. Offering a base product with well-defined features and functionality can serve as an entry point for clients. Professionals should assess the market value and determine appropriate pricing that reflects the benefits and customization options provided. Beta testing can be a valuable step to gather feedback, refine the product, and generate initial user testimonials or case studies. These efforts contribute to building credibility and attracting future customers.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://www.canva.com/\">Canva</a></li>\n\n\n\n<li><a href=\"https://chat.openai.com/\">Chat GPT</a></li>\n\n\n\n<li><a href=\"https://slack.com/\">Slack</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=\"http://twitter.com/coreymaass\">Corey Maass</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<h2 class=\"wp-block-heading\">Session 13 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p>[00:00:00] <strong>Corey Maass:</strong> It&#8217;s just so much work. I was like, it doesn&#8217;t have to be&nbsp;</p>\n\n\n\n<p>[00:00:06] <strong>Cory Miller:</strong> initial stuff. I&#8217;ve been doing this so long, to fine tune some stuff, get your workflow,&nbsp;</p>\n\n\n\n<p>[00:00:11] <strong>Corey Maass:</strong> but it&#8217;s just so much work. I was like, it doesn&#8217;t have, but now I&#8217;m like, I prefer this. Yeah. Yeah. There&#8217;s stuff that I want to be very polished and professional, but then there&#8217;s also turn it on and go.</p>\n\n\n\n<p>We&#8217;re turning on and go. We&#8217;re on now. Like specifically. I gotta turn my lights on. I just realized&nbsp;</p>\n\n\n\n<p>[00:00:34] <strong>Cory Miller:</strong> Corey&#8217;s doing that. Hey everybody, welcome back. This is session 13, I think. Corey and Corey launched the WordPress product live. We&#8217;ve got some cool updates. We&#8217;ve been working on some stuff and when I say working on some stuff, Corey, you&#8217;ve been like on this huge manic state of getting stuff done and yep,&nbsp;</p>\n\n\n\n<p>[00:00:53] <strong>Corey Maass:</strong> I&#8217;m pumped about it.</p>\n\n\n\n<p>I I built a hundred feet of fencing. Yeah I, last [00:01:00] week my client, main clients were outta town for a week, so I was like, all right, I&#8217;m gonna take a couple of days off and. Take advantage of the weather, finally getting nice and so built big, beautiful fences which has prompted the promise of an O M G I M G hackathon where Corey is gonna fly me out to his house and I&#8217;m gonna help him build a fence.</p>\n\n\n\n<p>But it also meant that I was. Hacking at our plug-in new product for a couple of hours every morning and every night. And over the weekend. So yeah, the, I just this morning zipped up. I have a little script that I used to zip all my plug-ins for distribution and uploaded it to a testing website and it broke.</p>\n\n\n\n<p>But then a couple minutes later it worked. So pretty amazing. Yeah, we&#8217;ve now got a plugin that installs. It&#8217;s[00:02:00] tied into e d D. Oh, good idea. Thank you. Yes. We should stand for this proud moment. But yeah I got as far as incorporating the licensing with e D D. So that&#8217;s now tied into the OMG img.co website.</p>\n\n\n\n<p>That has a, just a placeholder logo on it. We need to put the signup form coming soon on that website. I keep forgetting. But it&#8217;s got the basics. The plugin itself has the basics of, so you can install it, it takes you to a welcome screen. You add a logo and it creates your first image, which is the logo on the left and the title of the site on the right.</p>\n\n\n\n<p>Like we talked about, in, in a few clicks and in a few seconds you&#8217;ve got at least the most basic OG image and I found what I needed to. If you don&#8217;t have Yost or something else [00:03:00] Installed. Then this will show as the OG image. We need to test that a bit more, but is working on my WordPress installs.</p>\n\n\n\n<p>And then I also found the hook for Yost. So if Yost is installed regardless of the OG image you have, Plugged into Yost hours will show if you&#8217;ve selected one. And then, and so that&#8217;s Sitewide. And then we have most of the functionality for host specific images as well. And so right now you.</p>\n\n\n\n<p>Associated with a post, you can create images and you can set those as a featured image, and that works. What I haven&#8217;t finished yet is setting an individual OG image per post. So if you share your homepage, it&#8217;ll show the sitewide [00:04:00] OG image, but if you share a specific post, it should show the OG image for that post.</p>\n\n\n\n<p>And if there isn&#8217;t one specified then should show the sitewide one. So we need to test that, but all the functionality is there. And then the only other, I mean there&#8217;s, there&#8217;s a few little bugs and things here and there and we need to do a lot of testing on different browsers and stuff like that.</p>\n\n\n\n<p>But the, so the OG image per post is the one big thing missing. And. Yeah. And then I think we&#8217;re, we&#8217;re pretty close. We need better templates, which you&#8217;ve been working on. And yeah, again there&#8217;s, I&#8217;m to the point where the, the framework works. We need to pick a couple of templates and just start messing around with them.</p>\n\n\n\n<p>And so it&#8217;s the like as we&#8217;re going, oh, we really need this over here. And I&#8217;ll go, oh, it doesn&#8217;t support that yet. Let me quick go at it. We&#8217;ll get into that development loop. But that&#8217;s where we&#8217;re at. We&#8217;re pretty far along.&nbsp;</p>\n\n\n\n<p>[00:04:59] <strong>Cory Miller:</strong> That&#8217;s [00:05:00] awesome to hear. Awesome news. Oh, keep building fences cause.</p>\n\n\n\n<p>Focus two, you got your physical outlet and then you got your mental digital outlet. That&#8217;s all great news. I think my biggest question is when do you think by end of day our part like beta client site is post has by end of day our, we should be switched over to our new hosting environment.</p>\n\n\n\n<p>And things should be a lot better for the website that have been lingering.&nbsp;</p>\n\n\n\n<p>[00:05:34] <strong>Corey Maass:</strong> Congrats&nbsp;</p>\n\n\n\n<p>[00:05:37] <strong>Cory Miller:</strong> by tomorrow. It should be ready to available, I should say to install the plugin if you wanted to. Great. Okay, that&#8217;s all good news. And on that note for, to recap for others that haven&#8217;t seen previous episodes, where we&#8217;re at now is.</p>\n\n\n\n<p>You just heard Corey&#8217;s product update, great progress on what we had talked about [00:06:00] the past couple of weeks, about an easy way to show your website professionally on the web through open graph. So posts being our kind of default list lists. Not just iron out the dev kinks, but also how we want that to look cuz that&#8217;s very important.</p>\n\n\n\n<p>Both of us have interest in design. So on that note, using that post as the test, I started working in Canva. I also, my update to you would be also, as I mentioned in Slack I submitted the design request for the templates posts to start to flush out how we want this to look. I do know we do have the nuts and bolts of what we need for just templates.</p>\n\n\n\n<p>So I still need to do more of that work. But I wanted to show you this. Along that kind of research and work from my side, I found this og [00:07:00] image gallery, og image com. Oh, nice. Yep. Wow. This is what I needed. Yeah. I love some of these things. So I took, and I&#8217;m not a professional designer, I&#8217;m just a hobby designer.</p>\n\n\n\n<p>Yeah. But I was like, this is really inspiring for the general. Default website, business card. So just looking through here there&#8217;s just such good stuff. So I was like riffed on something like this with that, and I&#8217;ll have to get this to our designer. But all of that, just thinking about how to offer a really good template option and what is in there.</p>\n\n\n\n<p>So I was like, okay. I got the dimensions like we had talked about and just started like going, okay, what were the business cards? Funny going in Chem Camba. When I put in the ratio, I pulled up a business card template. I was like, that was cool to see some of those. And I just started like riffing something that I could at least.</p>\n\n\n\n<p>Flesh out my thoughts a little bit to get [00:08:00] back to the designer based on some of these other gallery options. So that&#8217;s what I was working on when I didn&#8217;t realize you were here and I was still working. But just for the general website, the thoughts we had were logo, some treatment.</p>\n\n\n\n<p>What I liked about these images over here is like you have a big title. Yep. A small logo. I like how Mix Panel threw in some kind of graphic that linked what Mix panel. Mix panel is.&nbsp;</p>\n\n\n\n<p>[00:08:31] <strong>Corey Maass:</strong> So the technology we&#8217;re using is still technically a screenshot. And so seeing this version one, 1.1 or whatever so in my mind, the first.</p>\n\n\n\n<p>OG image template that we want is logo on the left, title on the right, dead simple, a background, color, whatever. But there&#8217;s [00:09:00] no reason. And, and as the rabbit hole you started going down on our last call that I poked fun at you for was that you kept moving the logo from the left to the center, left, to the right, to the center.</p>\n\n\n\n<p>And it&#8217;s we don&#8217;t, the beauty of this is we don&#8217;t have to choose. We can if it, we can, there are two things we can do. One is. I can offer an option that says, do you want the logo on the left or center? The other thing is we can have multi, almost infinite templates.</p>\n\n\n\n<p>And I don&#8217;t think we want to have too many. Templates that are too similar, but, looking at that, that gallery you were just looking at, like a lot of these have, you look at the patterns, right? So you&#8217;ve got a logo top left for a lot of them, or you&#8217;ve, and an image on the right.</p>\n\n\n\n<p>Or you&#8217;ve got a logo top and then a text underneath or the one you were just showing me, which is what made me start, made me interrupt you. The mix panel, right? Is. Again, version [00:10:00] 1.1. I wonder that our best template isn&#8217;t actually going to be we can we could actually take a screenshot of their homepage and then automatically suck it in to a template.</p>\n\n\n\n<p>And with one click, like we would go take, essentially take a picture of the homepage and then put it in a template. They&#8217;ve uploaded a logo, we have the title, and we&#8217;ve essentially recreated that mix panel template in one go. I hadn&#8217;t thought of that cuz we&#8217;re talk, it&#8217;s the what&#8217;s the movie Inception we&#8217;ve got.</p>\n\n\n\n<p>Screenshots of screenshots, but but we can certainly do that. We can say, I hadn&#8217;t thought of this before, like talking about creating a template for each blog post, pulling in the title, pulling in the featured image. We could actually take a screenshot of the blog post and then inject it at, in lieu of a [00:11:00] featured image into.</p>\n\n\n\n<p>An OG image, so you&#8217;ve got an actual picture of the website in that, that mix panel style. That&#8217;s really cool. I hadn&#8217;t thought of that. That&#8217;s&nbsp;</p>\n\n\n\n<p>[00:11:13] <strong>Cory Miller:</strong> so good. I&#8217;m trying to record some of these as we see &#8217;em. Yeah. So I can direct them. But I know what you&#8217;re doing with them too is you see this and go, okay, that means centered left.</p>\n\n\n\n<p>This one is in the middle. There&#8217;s another le you&#8217;re right, top left. Seems like I love that idea though of the screenshot cuz like I was having a hard time with the post status one. Just showing my workflow. I was like, okay, trying to create this, what would I want? And I like the examples where they have some image something there and I was like, oh man, here it, so I found a camera like this little browser&nbsp;</p>\n\n\n\n<p>[00:11:53] <strong>Corey Maass:</strong> frame.</p>\n\n\n\n<p>Yep. That&#8217;s what I was the, it tickled my brain when you showed me this. I&#8217;m like, go take [00:12:00] a screenshot of the post status homepage at, at these proportions and then drag that in here. And that&#8217;s, in l in lieu of that, fake browser, a placeholder. You could actually have a picture of the website cuz that&#8217;s it, that kind of.</p>\n\n\n\n<p>True. And with a drop shadow. And so it&#8217;s like all of these things we can do, but it&#8217;s also, it&#8217;s that kind of thing that adds a little more legitimacy. It&#8217;s the, just as you brought up, I think last time, the, those generators of, books, book cover, so it or fake software, so it looks like.</p>\n\n\n\n<p>It&#8217;s like when people were writing eBooks or, have downloadable software. There were these templates you&#8217;d upload the cover and it would spit out an image, a 3D generated image that looked like the box that you&#8217;d see on the shelf at Staples. That&#8217;s what we were talking about a couple of weeks ago.</p>\n\n\n\n<p>Doing similar here, where it&#8217;s okay, either upload a screenshot or we can take a screenshot of the actual blog post. So [00:13:00] you&#8217;re, you&#8217;ve got a picture of the website, it&#8217;s gonna lend this sense of legitimacy even more than, a stylized title or whatever. That&#8217;s really slick. But</p>\n\n\n\n<p>In the, I&#8217;m not hearing you. Something happened to your audio. Oh, that screenshot.&nbsp;</p>\n\n\n\n<p>[00:13:18] <strong>Cory Miller:</strong> Oh, there we go. Okay. That screenshot thing, I was just trying to make sure I got it down. Yep. Just trying to make sure I had that&nbsp;</p>\n\n\n\n<p>[00:13:26] <strong>Corey Maass:</strong> vision of what we&#8217;re talking about, but I wonder that we don&#8217;t, either. We basically, we need to start a Pinterest board of all of the great ones we find you&#8217;ve got, you&#8217;ve found this gallery that gives us a head start and I feel like we, at some point, you or we should spend 10 minutes just going through a bunch of them recog, noticing some of these patterns okay.</p>\n\n\n\n<p>20% of them have a little logo in a screenshot. 20% of [00:14:00] them are, 50 50, 20% of them are logo top title bottom and just call those our first three templates or something like that. Incorporating, like you said, with post status being our testing, ground first, testing ground When the designer comes back with your new template, let&#8217;s make sure that&#8217;s accounted for.</p>\n\n\n\n<p>And then those are like the first four that we go live with. Because that&#8217;ll, again if we&#8217;ve, if we identify these sort of, not 80 20, but 20, 20 20, 20 20, people are gonna wanna do wild, crazy things. And like I said I&#8217;ve built the plugin in a way that people can pretty easily create their own.</p>\n\n\n\n<p>They&#8217;re gonna need to be developers, but, Can still, add their own treatments and stuff like that. But if we&#8217;ve covered most of the bases, at least for OG images, then, when we publish, cuz again, EDDs all set up, I&#8217;ve added Stripe and all that kind of stuff. Like, all we&#8217;ve gotta do is [00:15:00] Go live, essentially.</p>\n\n\n\n<p>But, and obviously we want to do that with actual templates that work and after some testing. But, we&#8217;re pretty close. We just need to offer the, a actual, it&#8217;s like we&#8217;ve worked out the engine, we&#8217;ve worked out the wheels. We just now need the what is it, the. The Civic, the Acura, the, s u v and the truck or whatever, but the underlying stuff is all is, has all worked out.</p>\n\n\n\n<p>[00:15:27] <strong>Cory Miller:</strong> Love it. Just trying to get, capture this for, got it.</p>\n\n\n\n<p>Yeah, because like up here we talked about doing some of these things, but like pulling in a little screenshot, I think that&#8217;d be really awesome. Okay, so here&#8217;s my big question. I&#8217;m scared to ask. Can this be a fr framed in like a browser button? That browser thing, Nick? Oh, for sure. Wherever it was.</p>\n\n\n\n<p>[00:15:56] <strong>Corey Maass:</strong> Okay. Yeah. Like things we need to work, all stuff [00:16:00] to work out. But absolutely the easy one is, yep. The easy one is just adding a drop shadow. The one that we just need to find essentially the right yeah, the right size, basically either P and g or there are. Browsers or mobile phones, all done in css, which means they will, stretch, right?</p>\n\n\n\n<p>So we could actually take screenshots. There&#8217;s one on your screen. Bottom right? Like that phone yeah, the, on the right. Yep. That one. We could essentially recreate that. Go take a screenshot of your homepage, stick it in a phone. And then take a picture of the og, put, create an OG image out of that.</p>\n\n\n\n<p>So it&#8217;s if you are a mobile app or something, like we could do that kind of thing. And then we this totally might be a pipe dream, but we can start looking into actually like. Doing skewing type of stuff, meaning we can like some of those OG [00:17:00] images to make it more dynamic.</p>\n\n\n\n<p>They&#8217;ve, instead of just a flat screenshot, they&#8217;ve tilted it on its side. We can start looking into that kind of stuff too. I&#8217;m not, I don&#8217;t know yet if we can do it or not, but it&#8217;s not, it&#8217;s certainly not hard to test it. Let&#8217;s see.&nbsp;</p>\n\n\n\n<p>[00:17:16] <strong>Cory Miller:</strong> Just thinking about frames for it like that I think is really cool.</p>\n\n\n\n<p>I&#8217;d want that on Post stuff. Yep. But just a way to frame it in any way. Yeah. The image that you&#8217;re doing I think is interesting. Okay. So I&#8217;m looking at these templates, like that&#8217;s gonna give me another thought for the post status one. Seeing what they come back. I bet you&#8217;ll get something by tomorrow on that.</p>\n\n\n\n<p>Great.</p>\n\n\n\n<p>Get that in here.</p>\n\n\n\n<p>Product. Yep.</p>\n\n\n\n<p>Magazine would be in there. Magazine. Oh&nbsp;</p>\n\n\n\n<p>[00:17:49] <strong>Corey Maass:</strong> yeah. That&#8217;s one of your clients? Yeah. Yeah, exactly. Okay. [00:18:00]&nbsp;</p>\n\n\n\n<p>[00:18:01] <strong>Cory Miller:</strong> Yeah. I really like that because for the screenshot for the post it just shows like this is the blog post and there&#8217;s some rendering of it that goes, when I click through, this is what I&#8217;m gonna get and expect to get.</p>\n\n\n\n<p>Yeah.&nbsp;</p>\n\n\n\n<p>[00:18:15] <strong>Corey Maass:</strong> Yeah, that&#8217;s, yeah, I think that&#8217;s, that takes it to a, to another level, like not there. And it&#8217;s there&#8217;s different times and places too. It&#8217;s some, if you share on Facebook, you get, you get the full image like this, right? But if you share on Twitter, it&#8217;s like this.</p>\n\n\n\n<p>Or if you share in Slack, it&#8217;s like this. And so there&#8217;s time we can&#8217;t. I don&#8217;t think we can control which version gets delivered where, but depending on your preferred, if you&#8217;re mostly promoting to Facebook, then having an image that has a lot of detail, meaning a screenshot, totally works.</p>\n\n\n\n<p>Whereas if you are sharing look, in the you that [00:19:00] wise one, if you scroll down if you&#8217;re sharing somewhere that it always shows up small, you&#8217;re like all we want is the name of our website as big as possible Then, and so essentially we&#8217;re giving you lots of options.</p>\n\n\n\n<p>The one just kitty Corner down memory. That one? Yeah, there&#8217;s your screenshot right there. So it&#8217;s, a fake browser frame around a screenshot of something. And again at an angle, I know we can do rotate. I&#8217;ve already done rotate him in one of my test templates. So that&#8217;s the, that&#8217;s something we could emulate pretty readily.</p>\n\n\n\n<p>But this is the</p>\n\n\n\n<p>trap, the loop that I&#8217;m stuck in right, is I&#8217;m. I ha I have a tool and I don&#8217;t, I have a solution, but I don&#8217;t have the problem yet. And so I&#8217;ve just been testing like crazy, all the different neat things we can do. But I haven&#8217;t actually sat down and said, okay, let me try to recreate one of these OG [00:20:00] images with our new system, or let me call this template number one.</p>\n\n\n\n<p>And here&#8217;s the elements that it needs. So this is great. I think, like you said if you get back the new ones for post status in the next couple of days and we pick a couple of these based on the list you just created, then you know, we&#8217;re good to go.</p>\n\n\n\n<p>Okay. Yeah. There&#8217;s&nbsp;</p>\n\n\n\n<p>[00:20:24] <strong>Cory Miller:</strong> a lot of, yeah. Logo, left image, which is what we got here. Logo, top head logo, smaller headline here.</p>\n\n\n\n<p>Same.&nbsp;</p>\n\n\n\n<p>[00:20:38] <strong>Corey Maass:</strong> Okay.</p>\n\n\n\n<p>Yeah, I&#8217;m seeing a lot of patterns and so again, I think we just pick a few.</p>\n\n\n\n<p>And of course you have our entire marketing strategy done already, right? Yeah. Me and my&nbsp;</p>\n\n\n\n<p>[00:20:50] <strong>Cory Miller:</strong> buddy Chap, G P t.</p>\n\n\n\n<p>Plus he&#8217;s at while I have &#8217;em. So when I ask the designer to work on some of those, cuz I&#8217;d probably take a lot of these. And say [00:21:00] do this for post status is our test case. Yep. The podcast is gonna be a little tricky I think.</p>\n\n\n\n<p>Cuz you want to host probably, but what if you have two hosts? Yep. What if, and you always have a guest I always have a guest. But we&#8217;ll cross that bridge later on. Okay. Logo only. I like that. Logo is screenshot of homepage. See logo and tagline only.</p>\n\n\n\n<p>[00:21:30] <strong>Corey Maass:</strong> So I, I think you should using that og, that image gallery, like for each of these go take, go find one that&#8217;s close to what you want and just like you did a minute ago. Yeah. Like that slide number five, capture one of each. So that it&#8217;s okay, this is, just one big logo that&#8217;s wise, logo and tagline.</p>\n\n\n\n<p>That&#8217;s, one of those other ones. And it&#8217;s if we have all of those [00:22:00] captured here forever then that&#8217;s what we start with. And we, and we have a designer actually figure out the proportions, make it look proper. But then we&#8217;ve, we&#8217;re. Like you said we&#8217;re covering the bases.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Can do.</p>\n\n\n\n<p>Yeah. We&#8217;re close. I&#8217;m excited. And I&#8217;ve set up, like I said, I&#8217;ve set up most of the basics we need just to get it out the door. At some point we need to have a conversation about pricing. And a logo, but I&#8217;m very, I&#8217;m excited that we are very close to having something that we can, you can be using on post status.</p>\n\n\n\n<p>I can ha put on my client websites. And essentially we&#8217;re, we might even maybe in post status Slack let&#8217;s see if we can put together a beta. Beta list, beta testers, 10, 50, a hundred, and roll it out to some people, because with e d.[00:23:00] So for anybody who&#8217;s not familiar, that&#8217;s the shopping cart checkout mechanism that has, that&#8217;s really specifically good for selling software licenses.</p>\n\n\n\n<p>And so we can essentially give a, give away a free version of the plugin. And it doesn&#8217;t and anybody we give it to won&#8217;t, can&#8217;t update. As we release updates unless they buy or unless we give them a copy. Cuz in WordPress that&#8217;s really what you&#8217;re selling is access to the next version. Cuz everything is open sourced.</p>\n\n\n\n<p>But so we, I, it makes it very easy to distribute something like this. Like I have no problem giving away the first version to, generally you, trusted colleagues kind of thing. But if it gets leaked, I don&#8217;t care because, we&#8217;re gonna be cranking out new versions, daily, weekly early on as new features and bugs and stuff like that get un get added, fixed.</p>\n\n\n\n<p>[00:24:00] And it&#8217;s, people will have an early beta, but will want to buy in order to get those updates. Okay. I think in,&nbsp;</p>\n\n\n\n<p>[00:24:09] <strong>Cory Miller:</strong> so I&#8217;ve got pricing logo templates, pricing logo,&nbsp;</p>\n\n\n\n<p>[00:24:14] <strong>Corey Maass:</strong> beta testers. Yeah, that seems like we&#8217;re. We&#8217;re ready for all that.</p>\n\n\n\n<p>Okay.&nbsp;</p>\n\n\n\n<p>[00:24:22] <strong>Cory Miller:</strong> I wanted going with templates so we could have something to like really inform what we&#8217;re doing. Yep. But after we get the first round, I&#8217;ll submit another request for the logo. Yep. And then pricing. I think we&#8217;ll get a I&#8217;ll for our part, get a better view of it when we get it in action.</p>\n\n\n\n<p>Show it going. And then, but I think some of the rough pricing talks we had were right on par. Get something, a base product that does something well.&nbsp;</p>\n\n\n\n<p>[00:24:51] <strong>Corey Maass:</strong> Yeah. That helps people look better.&nbsp;</p>\n\n\n\n<p>[00:24:53] <strong>Cory Miller:</strong> And then yeah, when we&#8217;re ready for&nbsp;</p>\n\n\n\n<p>[00:24:55] <strong>Corey Maass:</strong> beta test, which we&#8217;ll just ask you had a hard stop at [00:25:00] the top of the hour.</p>\n\n\n\n<p>So let&#8217;s wrap up today. Sorry about being late. No worries. And yeah, we&#8217;ll reconvene soon. I feel like things are starting to speed up. This is great.&nbsp;</p>\n\n\n\n<p>[00:25:10] <strong>Cory Miller:</strong> That&#8217;s awesome. Yeah,&nbsp;</p>\n\n\n\n<p>[00:25:12] <strong>Corey Maass:</strong> I&#8217;ll&nbsp;</p>\n\n\n\n<p>[00:25:12] <strong>Cory Miller:</strong> try to keep up with 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:\"Tue, 16 May 2023 23:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:69:\"WPTavern: New Proposal Looks to Retire Older WordPress Default Themes\";s:7:\"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=145067\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/new-proposal-looks-to-retire-older-wordpress-default-themes\";s: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:4259:\"<p>WordPress is approaching its 20th anniversary, and for the majority of those years, contributors have cranked out a new default theme. Even though the structure and supported features of default themes have drastically changed over the years, contributors are still actively maintaining all 13 of the &#8220;Twenty&#8221; themes.</p>\n\n\n\n<p>A new <a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">proposal</a> on WordPress.org recommends winding down active maintenance on older themes and implementing a new system of requirements for retiring them.</p>\n\n\n\n<p>&#8220;The level of effort to support 13 themes is not insignificant, especially in the times of the rapidly evolving block editor,&#8221; Bluehost-sponsored core contributor Jonathan Desrosiers said. &#8220;The burden of maintaining these themes has historically fallen on the Core team to ensure they continue to receive any needed updates.&#8221; These tasks include things like ensuring compatibility with newer PHP versions, fixing bugs, updates and deprecations of dependencies, security updates, and much more.</p>\n\n\n\n<p>&#8220;Because there are so many, it’s not uncommon for it to take several months before older default themes properly support newer features added in WordPress Core,&#8221; Desrosiers said. &#8220;Additionally, themes created prior to the existence of certain APIs are often unable to fully take advantage of these new features (global styles, block patterns, etc.).&#8221;</p>\n\n\n\n<p>Desrosiers contends that reducing the support burden on contributors will allow them to focus on ensuring the most modern block-based themes deliver the best experience.</p>\n\n\n\n<p>&#8220;It also helps clear the path for work on new block theme-focused experiments and initiatives (such as the <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes Initiative</a>) attempting to refine the role that themes will have in the block editor era,&#8221; he said.</p>\n\n\n\n<p>Themes released through the WordPress.org account via the Community Themes Initiative, like the <a href=\"https://wptavern.com/wordpress-themes-team-releases-stacks-a-community-theme-for-building-slide-decks\">recent Stacks slide deck theme</a>, will be officially supported, adding to the load. These themes, however, have the benefit of working with the Site Editor and all the latest features WordPress offers. When dealing with limited volunteer resources, supporting older default themes doesn&#8217;t have as much upside as spending these efforts the more modern themes.</p>\n\n\n\n<p>WordPress bundles the three most recent default themes in the latest download. This proposal seeks to retire older themes after a minimum of five years of support and when usage falls to less than 1% of all WordPress sites as determined by WordPress.org data. Using this criteria the default themes Twenty Ten through Twenty Sixteen would be retired and only receive security updates. Desrosiers suggests a yearly assessment of usage data to determine which themes would be retired.</p>\n\n\n\n<p>The three most recent WordPress default themes would be actively maintained and contributors would continue maintaining the following themes with bug fixes, compatibility updates, and security fixes:</p>\n\n\n\n<ul>\n<li>Twenty Seventeen</li>\n\n\n\n<li>Twenty Nineteen</li>\n\n\n\n<li>Twenty Twenty</li>\n</ul>\n\n\n\n<p>The proposal has multiple benefits, in addition to reducing the number of actively supported themes from 13 to 6, but also has the drawback of affecting an estimated 730,000 users who will no longer receive maintenance on their themes.</p>\n\n\n\n<p>General reception to the proposal has been positive, as those using very old themes are usually looking for as few changes to their website as possible. With security updates still available to retired themes, these users would not be forced to update to a newer theme.</p>\n\n\n\n<p>The proposal was developed based on feedback and recommendations from a group of contributors. It is now awaiting feedback from the larger community. Unless the proposal needs to be significantly modified, contributors will soon move on to the practical tasks associated with retiring themes.</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, 16 May 2023 20:56:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:70:\"WordPress.org blog: WordPress 6.2.1 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7562:\"<h2 class=\"wp-block-heading\">WordPress 6.2.1 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.1&group=component&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">20 bug fixes in Core</a> and <a href=\"https://github.com/orgs/WordPress/projects/88\">10 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2023/05/09/wordpress-6-2-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>This release also features several security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.1 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.1 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-3/\">version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.1.zip\">download WordPress 6.2.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release.</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user generated data; thanks to Liam Gladdy of <a href=\"https://wpengine.com/\">WP Engine</a> for reporting this issue</li>\n\n\n\n<li>A CSRF issue updating attachment thumbnails; reported by <a href=\"https://johnblackbourn.com/\">John Blackbourn</a> of the WordPress security team</li>\n\n\n\n<li>A flaw allowing XSS via open embed auto discovery; reported independently by Jakub Żoczek of <a href=\"https://research.securitum.com/\">Securitum</a> and during a third party security audit</li>\n\n\n\n<li>Bypassing of KSES sanitization in block attributes for low privileged users; discovered during a third party security audit.</li>\n\n\n\n<li>A path traversal issue via translation files; reported independently by Ramuel Gall &amp; Matt Rusnak at Wordfence, and during a third party security audit.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> and <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>.</p>\n\n\n\n<p>WordPress 6.2.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/amin7/\">amin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</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/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a>, <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</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/mdxfr/\">Marc</a>, <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</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/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</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/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2023 18:32: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:9:\"Jb Audras\";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:59:\"Do The Woo Community: 20 Years of Hosting with Bryan Muthig\";s:7:\"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=75142\";s:7:\"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://dothewoo.io/20-years-of-hosting-with-bryan-muthig/\";s: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:395:\"<p>Bryan finds A2 Hosting celebrating their 20th alongside WordPress. And that is 20 years of hosting stories and experience. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/20-years-of-hosting-with-bryan-muthig/\">20 Years of Hosting with Bryan Muthig</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, 16 May 2023 11:25: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: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:\"Thu, 01 Jun 2023 05:49:53 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 01 Jun 2023 05:30:35 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 2\";}}s:5:\"build\";s:14:\"20230529085130\";}','no'),(331,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1685641794','no'),(332,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1685598594','no'),(333,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1685641794','no'),(334,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\'>People of WordPress: Stefano Cassone</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\'>Celebrating 20 Years of WordPress</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\'>WordPress.org blog: People of WordPress: Stefano Cassone</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/wp-6-3-planning-wp20-ai-forum-replies-learnwp-survey-results/\'>Post Status: WP 6.3 Planning • WP20 • AI Forum Replies • LearnWP Survey Results</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/78-mike-mcalister-on-why-block-themes-are-the-future\'>WPTavern: #78 – Mike McAlister on Why Block Themes Are the Future</a></li></ul></div>','no'),(344,'elementor_1_elementor_updater_batch_d427a10c71c78f317d2b90b7031b','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'),(345,'_elementor_global_css','a:7:{s:4:\"time\";i:1688190702;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'),(346,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:12:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.19.0 - 29-01-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.19.0\";}s:13:\"ekit-nav-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.19.0 - 29-01-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.19.0\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.19.0 - 29-01-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.19.0\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"<style>/*! elementor - v3.19.0 - 29-01-2024 */\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>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.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))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>\";s:7:\"version\";s:6:\"3.19.0\";}s:20:\"elementskit-icon-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:19:\"elementskit-funfact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:23:\"elementskit-testimonial\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:24:\"elementskit-social-media\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.19.0\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:134:\"<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.19.0\";}}}}','yes'),(483,'_transient_timeout_wp_cli_login/3736d60b63-85c652c9-894775a9','1706691423','no'),(484,'_transient_wp_cli_login/3736d60b63-85c652c9-894775a9','{\"user\":1,\"private\":\"$P$BEbgRto0x4n9AQ2niU1sSNvLGLpQW6\\/\",\"time\":1706690523}','no'),(593,'_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.4.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.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.4\";s:7:\"version\";s:5:\"6.5.4\";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:1719175722;s:15:\"version_checked\";s:5:\"6.5.4\";s:12:\"translations\";a:0:{}}','no'),(606,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719175723;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{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.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.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: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: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\";}}s:7:\"checked\";a:9:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.83\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.51\";s:23:\"elementor/elementor.php\";s:6:\"3.22.1\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.36\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.13.2\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.2.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:43:\"template-kit-import/template-kit-import.php\";s:6:\"1.0.15\";}}','no'),(607,'_site_transient_timeout_theme_roots','1718659685','no'),(608,'_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');
/*!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=1499 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,'_elementor_edit_mode','builder'),(10,7,'_elementor_template_type','kit'),(11,7,'_elementor_version','3.13.4'),(12,8,'_elementor_edit_mode','builder'),(13,8,'_elementor_template_type','page'),(14,8,'_elementor_version','3.13.4'),(15,7,'_wp_page_template','default'),(16,7,'_elementor_page_settings','a:75:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Montserrat\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Montserrat\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";s:28:\"h2_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Montserrat\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"700\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"700\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:10:\"Montserrat\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"800\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#0C5A23\";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:1;}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#229631\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_weight\";s:3:\"700\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:6:\"Medisa\";s:16:\"site_description\";s:45:\"Template Kit For Medical Service &amp; Clinic\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:8:\"h6_color\";s:7:\"#08485E\";s:15:\"activeItemIndex\";i:1;s:17:\"link_normal_color\";s:7:\"#0C5A23\";s:16:\"link_hover_color\";s:7:\"#229631\";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:21:\"form_field_text_color\";s:7:\"#0C5A23\";s:27:\"form_field_background_color\";s:7:\"#DEFFEC\";s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";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:18:\"rgba(0, 0, 0, 0.1)\";}s:41:\"form_field_box_shadow_box_shadow_position\";s:5:\"inset\";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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}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:33:\"form_field_focus_background_color\";s:7:\"#FFFFFF\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_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:29:\"form_field_focus_border_color\";s:7:\"#21C063\";s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:8:\"h1_color\";s:7:\"#FFFFFF\";}'),(17,7,'_elementor_data','[]'),(18,9,'_elementor_edit_mode','builder'),(19,9,'_elementor_template_type','page'),(20,9,'_elementor_version','3.13.4'),(21,9,'_wp_page_template','default'),(22,9,'_elementor_page_settings','a:75:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Montserrat\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Montserrat\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";s:28:\"h2_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Montserrat\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"700\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"700\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:10:\"Montserrat\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"800\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#0C5A23\";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:1;}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#229631\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_weight\";s:3:\"700\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:6:\"Medisa\";s:16:\"site_description\";s:45:\"Template Kit For Medical Service &amp; Clinic\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:8:\"h6_color\";s:7:\"#08485E\";s:15:\"activeItemIndex\";i:1;s:17:\"link_normal_color\";s:7:\"#0C5A23\";s:16:\"link_hover_color\";s:7:\"#229631\";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:21:\"form_field_text_color\";s:7:\"#0C5A23\";s:27:\"form_field_background_color\";s:7:\"#DEFFEC\";s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";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:18:\"rgba(0, 0, 0, 0.1)\";}s:41:\"form_field_box_shadow_box_shadow_position\";s:5:\"inset\";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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}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:33:\"form_field_focus_background_color\";s:7:\"#FFFFFF\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_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:29:\"form_field_focus_border_color\";s:7:\"#21C063\";s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:8:\"h1_color\";s:7:\"#FFFFFF\";}'),(23,9,'_elementor_data','[]'),(24,7,'_elementor_page_assets','a:0:{}'),(25,7,'envato_tk_source_kit','6'),(26,7,'envato_tk_source_index','0'),(27,10,'_elementor_edit_mode','builder'),(28,10,'_elementor_template_type','kit'),(29,10,'_elementor_version','3.13.4'),(30,10,'_wp_page_template','default'),(31,10,'_elementor_page_settings','a:75:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:6:\"Roboto\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:10:\"Montserrat\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:10:\"Montserrat\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";s:28:\"h2_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-2;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:10:\"Montserrat\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"700\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"700\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:10:\"Montserrat\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"800\";s:28:\"h6_typography_text_transform\";s:9:\"uppercase\";s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#0C5A23\";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:1;}s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#229631\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_weight\";s:3:\"700\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8999999999999999;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:6:\"Medisa\";s:16:\"site_description\";s:45:\"Template Kit For Medical Service &amp; Clinic\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:8:\"h6_color\";s:7:\"#08485E\";s:15:\"activeItemIndex\";i:1;s:17:\"link_normal_color\";s:7:\"#0C5A23\";s:16:\"link_hover_color\";s:7:\"#229631\";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:21:\"form_field_text_color\";s:7:\"#0C5A23\";s:27:\"form_field_background_color\";s:7:\"#DEFFEC\";s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";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:18:\"rgba(0, 0, 0, 0.1)\";}s:41:\"form_field_box_shadow_box_shadow_position\";s:5:\"inset\";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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}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:33:\"form_field_focus_background_color\";s:7:\"#FFFFFF\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_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:29:\"form_field_focus_border_color\";s:7:\"#21C063\";s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:21;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:8:\"h1_color\";s:7:\"#FFFFFF\";}'),(32,10,'_elementor_data','[]'),(33,10,'_elementor_page_assets','a:0:{}'),(34,11,'_edit_lock','1685357204:1'),(35,11,'_elementor_edit_mode','builder'),(36,11,'_elementor_template_type','wp-page'),(37,11,'_elementor_version','3.13.4'),(39,14,'_wp_attached_file','2023/05/placeholder.png'),(40,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/05/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:{}}}'),(41,14,'_elementor_source_image_hash','88d42d2a7ad2d03b66dfd41184c97fffe3ff3254'),(42,15,'_elementor_edit_mode','builder'),(43,15,'_elementor_template_type','page'),(44,15,'_elementor_version','3.13.4'),(45,15,'_elementor_data','[{\"id\":\"7f7e805e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#21C063\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"em\",\"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\":\"1495dfcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":30,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bcdf683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"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\"}],\"isInner\":false},{\"id\":\"2561b3bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"content_position_tablet\":\"center\",\"padding\":{\"unit\":\"em\",\"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\":[],\"isInner\":false},{\"id\":\"7ac0493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.664000000000001,\"_inline_size_tablet\":35,\"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\":\"6c8d649c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"align\":\"center\",\"size\":\"md\",\"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}]'),(46,16,'_elementor_edit_mode','builder'),(47,16,'_elementor_template_type','page'),(48,16,'_elementor_version','3.13.4'),(49,16,'_elementor_data','[{\"id\":\"7f7e805e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#21C063\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"em\",\"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\":\"1495dfcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":30,\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bcdf683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"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\"}],\"isInner\":false},{\"id\":\"2561b3bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"_inline_size_tablet\":35,\"_inline_size_mobile\":20,\"content_position_tablet\":\"center\",\"padding\":{\"unit\":\"em\",\"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\":[],\"isInner\":false},{\"id\":\"7ac0493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.664000000000001,\"_inline_size_tablet\":35,\"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\":\"6c8d649c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"align\":\"center\",\"size\":\"md\",\"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}]'),(50,15,'_elementor_page_assets','a:0:{}'),(51,15,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(52,15,'_wp_page_template','default'),(53,15,'envato_tk_source_kit','6'),(54,15,'envato_tk_source_index','14'),(55,17,'_elementor_edit_mode','builder'),(56,17,'_elementor_template_type','page'),(57,17,'_elementor_version','3.13.4'),(58,17,'_elementor_data','[{\"id\":\"22c3742d\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_background\":\"gradient\",\"background_color\":\"#0C5A23\",\"background_color_b\":\"#0E762D\",\"padding\":{\"unit\":\"em\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":125,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"shape_divider_bottom_negative\":\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11152703\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"em\",\"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\":\"50e079d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch With Us.\",\"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\":\"26592e41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Metus class pulvinar blandit nec sodales posuere amet odio aptent\",\"header_size\":\"span\",\"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\":\"6e8960a9\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"68012f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"75e02cd6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"title_text\":\"Head Office\",\"description_text\":\"Jln Cempaka Wangi No 22 - Jakarta, ID\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true},{\"id\":\"75e956a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"1235bf59\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(62) 21-2012-2112 <\\/br>\\n+(62) 21-2012-1234\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true},{\"id\":\"69c12137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a7214c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"title_text\":\"Email Us\",\"description_text\":\"support@domain.tld <\\/br>\\nsupport@domain.tld\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e6735f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1080,\"sizes\":[]},\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"shape_divider_top_color\":\"#229631\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":125,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":71,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"6d10530a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"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\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a6d0ffd\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"48bfb680\",\"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\":\"67f0cc33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign Up for Our Newsletter.\",\"title_color\":\"#0C5A23\",\"align_mobile\":\"center\",\"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\":\"41dc22a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eleifend senectus ornare hendrerit dis lacinia habitant mattis\\u00a0<\\/p>\",\"align_mobile\":\"center\",\"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\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40c6084a\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"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\":\"c003c23\",\"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\":\"54e8959e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"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\":\"2af82e9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Service and Clinic\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#08485E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"42603280\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"0e3424a\",\"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\":\"e48c44d\",\"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\":\"7ea1792\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#229631\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\"},{\"id\":\"10428b66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 medisa template kit. All rights reserved. Design by QuickenWorks<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(59,18,'_elementor_edit_mode','builder'),(60,18,'_elementor_template_type','page'),(61,18,'_elementor_version','3.13.4'),(62,18,'_elementor_data','[{\"id\":\"22c3742d\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_background\":\"gradient\",\"background_color\":\"#0C5A23\",\"background_color_b\":\"#0E762D\",\"padding\":{\"unit\":\"em\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":125,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"shape_divider_bottom_negative\":\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11152703\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"em\",\"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\":\"50e079d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch With Us.\",\"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\":\"26592e41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Metus class pulvinar blandit nec sodales posuere amet odio aptent\",\"header_size\":\"span\",\"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\":\"6e8960a9\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"68012f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"75e02cd6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"title_text\":\"Head Office\",\"description_text\":\"Jln Cempaka Wangi No 22 - Jakarta, ID\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true},{\"id\":\"75e956a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"1235bf59\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call Us\",\"description_text\":\"+(62) 21-2012-2112 <\\/br>\\n+(62) 21-2012-1234\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true},{\"id\":\"69c12137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a7214c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"title_text\":\"Email Us\",\"description_text\":\"support@domain.tld <\\/br>\\nsupport@domain.tld\",\"position\":\"left\",\"title_size\":\"h4\",\"hover_primary_color\":\"#229631\",\"content_vertical_alignment\":\"middle\",\"title_color\":\"#0C5A23\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"view\":\"stacked\",\"primary_color\":\"#0C5A23\",\"hover_animation\":\"pop\",\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"__globals__\":{\"description_color\":\"globals\\/colors?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\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e6735f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1080,\"sizes\":[]},\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"shape_divider_top_color\":\"#229631\",\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":125,\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":71,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"6d10530a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"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\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a6d0ffd\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"48bfb680\",\"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\":\"67f0cc33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign Up for Our Newsletter.\",\"title_color\":\"#0C5A23\",\"align_mobile\":\"center\",\"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\":\"41dc22a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eleifend senectus ornare hendrerit dis lacinia habitant mattis\\u00a0<\\/p>\",\"align_mobile\":\"center\",\"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\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40c6084a\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"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\":\"c003c23\",\"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\":\"54e8959e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"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\":\"2af82e9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Service and Clinic\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#08485E\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"42603280\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"0e3424a\",\"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\":\"e48c44d\",\"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\":\"7ea1792\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#229631\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\"},{\"id\":\"10428b66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 medisa template kit. All rights reserved. Design by QuickenWorks<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(63,17,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(64,17,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(65,17,'_wp_page_template','default'),(66,17,'envato_tk_source_kit','6'),(67,17,'envato_tk_source_index','13'),(68,19,'_elementor_edit_mode','builder'),(69,19,'_elementor_template_type','page'),(70,19,'_elementor_version','3.13.4'),(71,20,'_elementor_edit_mode','builder'),(72,20,'_elementor_template_type','page'),(73,20,'_elementor_version','3.13.4'),(74,19,'_wp_page_template','elementor_header_footer'),(75,19,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(76,19,'_elementor_data','[{\"id\":\"786e5873\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_mobile\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"em\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.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\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"370006da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"background_color\":\"#FFFFFFA6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"7e5fdcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Better Health\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"7055d893\",\"elType\":\"widget\",\"settings\":{\"title\":\"People\'s Health is Our Priority\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"title_color\":\"#0C5A23\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1ca0c97b\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"},{\"id\":\"2954cb12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"md\",\"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\":\"50f44083\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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}],\"isInner\":false},{\"id\":\"2096d21a\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"70580b84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false},{\"id\":\"77ec6fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false},{\"id\":\"4dbfe896\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bf961c8\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"em\",\"size\":75,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"em\",\"size\":-20,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d5310d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"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\":\"4df50fee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"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\":false},{\"id\":\"4be9a22b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"5f181e7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"54f30aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are Professional Medical Service & Clinic\",\"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\":\"heading\"},{\"id\":\"312da5bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.<\\/p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6d5dee8c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"2f3ab018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":35,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2310d757\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"lg\",\"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\":\"64171cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":12,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"33d31f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.661999999999999,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48c72fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Watch Video\",\"header_size\":\"h6\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}],\"isInner\":false},{\"id\":\"305bc621\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_background\":\"gradient\",\"background_color\":\"#0C5A23\",\"background_color_b\":\"#21C063\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":45,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7616443b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"6720c48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"header_size\":\"h6\",\"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\":\"668c3fc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Service\",\"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\":\"6d1f774\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"3158e13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"7695c591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"65d78127\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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}],\"isInner\":true},{\"id\":\"3de8bfcd\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"64bde851\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"648b6207\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"41463fc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a852c8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3aa76321\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"bottom left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e292918\",\"elType\":\"widget\",\"settings\":{\"title\":\"Achievements\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"12f21e84\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ve won awards\",\"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\":\"heading\"},{\"id\":\"2e22f784\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#21C063\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#21C0631C\",\"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\":\"6c6cbc77\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25137c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"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\":[],\"isInner\":false},{\"id\":\"732a245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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}],\"isInner\":false},{\"id\":\"1402b0f3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"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\":\"2133a737\",\"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\":\"50775dbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":75,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"object-fit\":\"cover\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"2872cc08\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":35,\"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\":\"2b586aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"2683cba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"h6\",\"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\":\"52216b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25a22b01\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"8d7ec08\",\"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\":\"d4830c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partner\",\"header_size\":\"h6\",\"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\":\"78d12b9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awesome Partner\",\"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\":\"71e44020\",\"elType\":\"widget\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"slides_to_show_tablet\":\"5\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"5\",\"navigation\":\"none\",\"_ob_kontrolz_nav_pos_y_alt\":\"50% - 25px\",\"_ob_kontrolz_nav_pos_x_prev_alt\":\"0%\",\"_ob_kontrolz_nav_pos_x_next_alt\":\"0%\",\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75c48fa9\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"7ff1460a\",\"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\":\"5cb23bf7\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"look\":\"line_text\",\"text\":\"Editor\'s Choice\",\"html_tag\":\"h6\",\"color\":\"#21C063\",\"text_align\":\"left\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb60fcb\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"2c038b11\",\"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\":\"45d7a623\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Article\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29ae9b32\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"50dcf69a\",\"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\":[],\"isInner\":false}],\"isInner\":false}]'),(77,21,'_elementor_edit_mode','builder'),(78,21,'_elementor_template_type','page'),(79,21,'_elementor_version','3.13.4'),(80,21,'_wp_page_template','elementor_header_footer'),(81,21,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(82,21,'_elementor_data','[{\"id\":\"786e5873\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_mobile\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"em\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.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\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"370006da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"background_color\":\"#FFFFFFA6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"7e5fdcbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Better Health\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"7055d893\",\"elType\":\"widget\",\"settings\":{\"title\":\"People\'s Health is Our Priority\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"title_color\":\"#0C5A23\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1ca0c97b\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"},{\"id\":\"2954cb12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"md\",\"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\":\"50f44083\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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}],\"isInner\":false},{\"id\":\"2096d21a\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"70580b84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false},{\"id\":\"77ec6fe4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false},{\"id\":\"4dbfe896\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bf961c8\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"em\",\"size\":75,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"em\",\"size\":-20,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d5310d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"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\":\"4df50fee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"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\":false},{\"id\":\"4be9a22b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"5f181e7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"54f30aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are Professional Medical Service & Clinic\",\"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\":\"heading\"},{\"id\":\"312da5bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.<\\/p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6d5dee8c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"2f3ab018\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":35,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2310d757\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"lg\",\"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\":\"64171cab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":12,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"33d31f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.661999999999999,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48c72fa6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Watch Video\",\"header_size\":\"h6\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}],\"isInner\":false},{\"id\":\"305bc621\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_background\":\"gradient\",\"background_color\":\"#0C5A23\",\"background_color_b\":\"#21C063\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":45,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7616443b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"6720c48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"header_size\":\"h6\",\"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\":\"668c3fc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Service\",\"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\":\"6d1f774\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"3158e13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"7695c591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"65d78127\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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}],\"isInner\":true},{\"id\":\"3de8bfcd\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"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\":[{\"id\":\"64bde851\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"648b6207\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"41463fc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59a852c8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3aa76321\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"bottom left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e292918\",\"elType\":\"widget\",\"settings\":{\"title\":\"Achievements\",\"header_size\":\"h6\",\"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\":\"heading\"},{\"id\":\"12f21e84\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ve won awards\",\"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\":\"heading\"},{\"id\":\"2e22f784\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#21C063\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#21C0631C\",\"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\":\"6c6cbc77\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25137c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"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\":[],\"isInner\":false},{\"id\":\"732a245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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}],\"isInner\":false},{\"id\":\"1402b0f3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"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\":\"2133a737\",\"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\":\"50775dbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":75,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"object-fit\":\"cover\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"2872cc08\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":35,\"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\":\"2b586aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"2683cba2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"h6\",\"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\":\"52216b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25a22b01\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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\":\"8d7ec08\",\"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\":\"d4830c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partner\",\"header_size\":\"h6\",\"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\":\"78d12b9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awesome Partner\",\"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\":\"71e44020\",\"elType\":\"widget\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"slides_to_show_tablet\":\"5\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"5\",\"navigation\":\"none\",\"_ob_kontrolz_nav_pos_y_alt\":\"50% - 25px\",\"_ob_kontrolz_nav_pos_x_prev_alt\":\"0%\",\"_ob_kontrolz_nav_pos_x_next_alt\":\"0%\",\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75c48fa9\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"7ff1460a\",\"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\":\"5cb23bf7\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"look\":\"line_text\",\"text\":\"Editor\'s Choice\",\"html_tag\":\"h6\",\"color\":\"#21C063\",\"text_align\":\"left\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bb60fcb\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"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\":\"2c038b11\",\"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\":\"45d7a623\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Article\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29ae9b32\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"50dcf69a\",\"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\":[],\"isInner\":false}],\"isInner\":false}]'),(83,19,'_elementor_page_assets','a:0:{}'),(84,19,'envato_tk_source_kit','6'),(85,19,'envato_tk_source_index','8'),(86,22,'_elementor_edit_mode','builder'),(87,22,'_elementor_template_type','wp-page'),(88,22,'_elementor_version','3.13.4'),(89,22,'_wp_page_template','elementor_header_footer'),(90,22,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(91,22,'_elementor_data','[{\"id\":\"674a513d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_position_mobile\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_size_mobile\":\"initial\",\"background_overlay_bg_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom\":\"curve\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"shape_divider_bottom_negative\":\"yes\",\"padding\":{\"unit\":\"em\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75,\"sizes\":[]}},\"elements\":[{\"id\":\"38a1f8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"background_background\":\"classic\",\"background_color\":\"#FFFFFFA6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"74a3f64c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Better Health\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9968e29\",\"elType\":\"widget\",\"settings\":{\"title\":\"People\'s Health is Our Priority\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"title_color\":\"#0C5A23\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ff7caed\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54803b7a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2381c5e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b9b67b7\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\"},\"elements\":[{\"id\":\"680e6bad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"419f119e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"99b094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e03dc0e\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"em\",\"size\":75,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"em\",\"size\":-20,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"73427f47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"margin\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"2137ee25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6df07d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"662f56\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"174c1548\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Are Professional Medical Service & Clinic\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d06d58\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.<\\/p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"459be082\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\"},\"elements\":[{\"id\":\"1142548f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7adf37ac\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align_mobile\":\"center\",\"size\":\"lg\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"280ddeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":12,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":true},{\"id\":\"134d7deb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.661999999999999,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"68987f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Watch Video\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"385061ab\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_background\":\"gradient\",\"background_color\":\"#0C5A23\",\"background_color_b\":\"#21C063\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":45,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34714733\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"13f7157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22d6275\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Service\",\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6efcb2d9\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\"},\"elements\":[{\"id\":\"71a791f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7babe01f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"576b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"711404a8\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\"},\"elements\":[{\"id\":\"4b7ebd71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7f169372\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"37060dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43ff132c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"structure\":\"30\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"68f90195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40,\"_inline_size_tablet\":100,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"bottom left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"13f194a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Achievements\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5137b887\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ve won awards\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25628ef7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#21C063\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#21C0631C\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2551dda4\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"66768def\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"isInner\":false},{\"id\":\"7d2a6607\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.664000000000001,\"_inline_size_tablet\":50,\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4860e3d2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"f983e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"650bb8cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"vh\",\"size\":75,\"sizes\":[]},\"height_tablet\":{\"unit\":\"vh\",\"size\":50,\"sizes\":[]},\"object-fit\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"316e4e53\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]}},\"elements\":[{\"id\":\"702901e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"em\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"65b2eaf9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b5515fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44712038\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"padding\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b7d465\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65944839\",\"elType\":\"widget\",\"settings\":{\"title\":\"Partner\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"757a5aae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awesome Partner\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bcbce51\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"slides_to_show_tablet\":\"5\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"5\",\"navigation\":\"none\",\"_ob_kontrolz_nav_pos_y_alt\":\"50% - 25px\",\"_ob_kontrolz_nav_pos_x_prev_alt\":\"0%\",\"_ob_kontrolz_nav_pos_x_next_alt\":\"0%\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62abfd35\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\"},\"elements\":[{\"id\":\"63e1955\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"52385128\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"look\":\"line_text\",\"text\":\"Editor\'s Choice\",\"html_tag\":\"h6\",\"color\":\"#21C063\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52091d97\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\"},\"elements\":[{\"id\":\"1bebc2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"64bef061\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Article\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56b04a33\",\"elType\":\"section\",\"settings\":{\"_ob_glider_nav_pos_y_alt\":\"50% - 25px\",\"_ob_glider_nav_pos_x_prev_alt\":\"0%\",\"_ob_glider_nav_pos_x_next_alt\":\"0%\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f2ddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(92,22,'_elementor_page_assets','a:0:{}'),(93,7,'_edit_lock','1685352554:1'),(95,19,'_wp_trash_meta_status','publish'),(96,19,'_wp_trash_meta_time','1685355889'),(97,19,'_wp_desired_post_slug','homepage'),(98,17,'_wp_trash_meta_status','publish'),(99,17,'_wp_trash_meta_time','1685355890'),(100,17,'_wp_desired_post_slug','medisa-v1-footer'),(101,15,'_wp_trash_meta_status','publish'),(102,15,'_wp_trash_meta_time','1685355891'),(103,15,'_wp_desired_post_slug','medisa-v1-header'),(108,24,'_elementor_edit_mode','builder'),(109,24,'_elementor_template_type','kit'),(110,24,'_elementor_version','3.13.4'),(111,25,'_elementor_edit_mode','builder'),(112,25,'_elementor_template_type','section'),(113,25,'_elementor_version','3.13.4'),(114,24,'_wp_page_template','default'),(115,24,'_elementor_page_settings','a:77:{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:\"#4FB2E5\";}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:\"#4B4B4B\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#4FB2E5\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"dbc07a0\";s:5:\"title\";s:10:\"Dark Green\";s:5:\"color\";s:7:\"#2F6E89\";}i:1;a:3:{s:3:\"_id\";s:7:\"aaad7ba\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"28f542b\";s:5:\"title\";s:4:\"Dark\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"0bc8a88\";s:5:\"title\";s:9:\"Blue Grey\";s:5:\"color\";s:7:\"#DCF0FA\";}}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:9:\"Open Sans\";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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:14:{i:0;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:25:\"typography_text_transform\";s:9:\"uppercase\";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.59999999999999998;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"96c53d9\";s:5:\"title\";s:18:\"Section Subheading\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"1ecb7ca\";s:5:\"title\";s:12:\"Hero Heading\";}i:2;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"dff91ab\";s:5:\"title\";s:16:\"Hero Description\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;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:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"2f108d8\";s:5:\"title\";s:15:\"Section Heading\";}i:4;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";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:\"700\";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:3:\"_id\";s:7:\"2e7b7fa\";s:5:\"title\";s:10:\"Item Title\";}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"219ae0c\";s:5:\"title\";s:16:\"Check Mark Title\";}i:6;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;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.3;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:{}}s:3:\"_id\";s:7:\"56c7fcd\";s:5:\"title\";s:14:\"Counter Number\";}i:7;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:0.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"82fdb71\";s:5:\"title\";s:9:\"Menu Item\";}i:8;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:3:\"_id\";s:7:\"a71ef79\";s:5:\"title\";s:13:\"Counter Title\";}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"416cc31\";s:5:\"title\";s:17:\"Testimony Content\";}i:10;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"ad4f5bc\";s:5:\"title\";s:12:\"Page Heading\";}i:11;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:\"800\";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:3:\"_id\";s:7:\"b928125\";s:5:\"title\";s:13:\"Pricing Price\";}i:12;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"300\";s:26:\"typography_text_decoration\";s:12:\"line-through\";s:3:\"_id\";s:7:\"d61ce5d\";s:5:\"title\";s:12:\"List Uncheck\";}i:13;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:120;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"93c2961\";s:5:\"title\";s:11:\"404 Heading\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:10:\"body_color\";s:7:\"#4B4B4B\";s:17:\"link_normal_color\";s:7:\"#4FB2E5\";s:8:\"h1_color\";s:7:\"#2F6E89\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Open Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#2F6E89\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Open Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";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:\"#2F6E89\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Open Sans\";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:\"#2F6E89\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Open Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;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.2;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#2F6E89\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Open Sans\";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\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#2F6E89\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Open Sans\";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:\"500\";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:4:\"Lato\";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:\"400\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#4FB2E5\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:16:{s:17:\"button_text_color\";s:0:\"\";s:23:\"button_background_color\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:17:\"link_normal_color\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:27:\"form_field_background_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:29:\"form_field_focus_border_color\";s:0:\"\";s:27:\"form_field_focus_text_color\";s:0:\"\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:16:\"form_label_color\";s:7:\"#54595F\";s:21:\"form_field_text_color\";s:7:\"#54595F\";s:27:\"form_field_background_color\";s:7:\"#DCF0FA\";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:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#DCF0FA\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";b:1;}s:43:\"form_field_focus_box_shadow_box_shadow_type\";s:3:\"yes\";s:38:\"form_field_focus_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:0;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.5)\";}s:47:\"form_field_focus_box_shadow_box_shadow_position\";s:5:\"inset\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:29:\"form_field_focus_border_color\";s:7:\"#4FB2E5\";s:27:\"form_field_focus_text_color\";s:7:\"#2F6E89\";}'),(116,24,'_elementor_data','[]'),(117,26,'_elementor_edit_mode','builder'),(118,26,'_elementor_template_type','section'),(119,26,'_elementor_version','3.13.4'),(120,26,'_wp_page_template','default'),(121,26,'_elementor_page_settings','a:77:{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:\"#4FB2E5\";}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:\"#4B4B4B\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#4FB2E5\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"dbc07a0\";s:5:\"title\";s:10:\"Dark Green\";s:5:\"color\";s:7:\"#2F6E89\";}i:1;a:3:{s:3:\"_id\";s:7:\"aaad7ba\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"28f542b\";s:5:\"title\";s:4:\"Dark\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"0bc8a88\";s:5:\"title\";s:9:\"Blue Grey\";s:5:\"color\";s:7:\"#DCF0FA\";}}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:9:\"Open Sans\";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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:14:{i:0;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:25:\"typography_text_transform\";s:9:\"uppercase\";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.59999999999999998;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"96c53d9\";s:5:\"title\";s:18:\"Section Subheading\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"1ecb7ca\";s:5:\"title\";s:12:\"Hero Heading\";}i:2;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"dff91ab\";s:5:\"title\";s:16:\"Hero Description\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;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:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"2f108d8\";s:5:\"title\";s:15:\"Section Heading\";}i:4;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";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:\"700\";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:3:\"_id\";s:7:\"2e7b7fa\";s:5:\"title\";s:10:\"Item Title\";}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"219ae0c\";s:5:\"title\";s:16:\"Check Mark Title\";}i:6;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;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.3;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:{}}s:3:\"_id\";s:7:\"56c7fcd\";s:5:\"title\";s:14:\"Counter Number\";}i:7;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:0.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"82fdb71\";s:5:\"title\";s:9:\"Menu Item\";}i:8;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:3:\"_id\";s:7:\"a71ef79\";s:5:\"title\";s:13:\"Counter Title\";}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"416cc31\";s:5:\"title\";s:17:\"Testimony Content\";}i:10;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"ad4f5bc\";s:5:\"title\";s:12:\"Page Heading\";}i:11;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:\"800\";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:3:\"_id\";s:7:\"b928125\";s:5:\"title\";s:13:\"Pricing Price\";}i:12;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"300\";s:26:\"typography_text_decoration\";s:12:\"line-through\";s:3:\"_id\";s:7:\"d61ce5d\";s:5:\"title\";s:12:\"List Uncheck\";}i:13;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:120;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"93c2961\";s:5:\"title\";s:11:\"404 Heading\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:10:\"body_color\";s:7:\"#4B4B4B\";s:17:\"link_normal_color\";s:7:\"#4FB2E5\";s:8:\"h1_color\";s:7:\"#2F6E89\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Open Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#2F6E89\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Open Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";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:\"#2F6E89\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Open Sans\";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:\"#2F6E89\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Open Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;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.2;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#2F6E89\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Open Sans\";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\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#2F6E89\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Open Sans\";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:\"500\";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:4:\"Lato\";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:\"400\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#4FB2E5\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:16:{s:17:\"button_text_color\";s:0:\"\";s:23:\"button_background_color\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:17:\"link_normal_color\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:27:\"form_field_background_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:29:\"form_field_focus_border_color\";s:0:\"\";s:27:\"form_field_focus_text_color\";s:0:\"\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:16:\"form_label_color\";s:7:\"#54595F\";s:21:\"form_field_text_color\";s:7:\"#54595F\";s:27:\"form_field_background_color\";s:7:\"#DCF0FA\";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:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#DCF0FA\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";b:1;}s:43:\"form_field_focus_box_shadow_box_shadow_type\";s:3:\"yes\";s:38:\"form_field_focus_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:0;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.5)\";}s:47:\"form_field_focus_box_shadow_box_shadow_position\";s:5:\"inset\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:29:\"form_field_focus_border_color\";s:7:\"#4FB2E5\";s:27:\"form_field_focus_text_color\";s:7:\"#2F6E89\";}'),(122,26,'_elementor_data','[]'),(123,24,'_elementor_page_assets','a:0:{}'),(124,24,'envato_tk_source_kit','23'),(125,24,'envato_tk_source_index','0'),(126,27,'_elementor_edit_mode','builder'),(127,27,'_elementor_template_type','kit'),(128,27,'_elementor_version','3.13.4'),(129,27,'_wp_page_template','default'),(130,27,'_elementor_page_settings','a:77:{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:\"#4FB2E5\";}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:\"#4B4B4B\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#4FB2E5\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"dbc07a0\";s:5:\"title\";s:10:\"Dark Green\";s:5:\"color\";s:7:\"#2F6E89\";}i:1;a:3:{s:3:\"_id\";s:7:\"aaad7ba\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"28f542b\";s:5:\"title\";s:4:\"Dark\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:7:\"0bc8a88\";s:5:\"title\";s:9:\"Blue Grey\";s:5:\"color\";s:7:\"#DCF0FA\";}}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:9:\"Open Sans\";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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:14:{i:0;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:25:\"typography_text_transform\";s:9:\"uppercase\";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.59999999999999998;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"96c53d9\";s:5:\"title\";s:18:\"Section Subheading\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:46;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:38;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"1ecb7ca\";s:5:\"title\";s:12:\"Hero Heading\";}i:2;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"dff91ab\";s:5:\"title\";s:16:\"Hero Description\";}i:3;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;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:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"2f108d8\";s:5:\"title\";s:15:\"Section Heading\";}i:4;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";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:\"700\";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:3:\"_id\";s:7:\"2e7b7fa\";s:5:\"title\";s:10:\"Item Title\";}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";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:3:\"_id\";s:7:\"219ae0c\";s:5:\"title\";s:16:\"Check Mark Title\";}i:6;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:70;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.3;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:{}}s:3:\"_id\";s:7:\"56c7fcd\";s:5:\"title\";s:14:\"Counter Number\";}i:7;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:0.5;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"82fdb71\";s:5:\"title\";s:9:\"Menu Item\";}i:8;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"400\";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:3:\"_id\";s:7:\"a71ef79\";s:5:\"title\";s:13:\"Counter Title\";}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"416cc31\";s:5:\"title\";s:17:\"Testimony Content\";}i:10;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:56;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"ad4f5bc\";s:5:\"title\";s:12:\"Page Heading\";}i:11;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:64;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";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:\"800\";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:3:\"_id\";s:7:\"b928125\";s:5:\"title\";s:13:\"Pricing Price\";}i:12;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:4:\"Lato\";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:\"300\";s:26:\"typography_text_decoration\";s:12:\"line-through\";s:3:\"_id\";s:7:\"d61ce5d\";s:5:\"title\";s:12:\"List Uncheck\";}i:13;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:120;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:80;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";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:3:\"_id\";s:7:\"93c2961\";s:5:\"title\";s:11:\"404 Heading\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:10:\"body_color\";s:7:\"#4B4B4B\";s:17:\"link_normal_color\";s:7:\"#4FB2E5\";s:8:\"h1_color\";s:7:\"#2F6E89\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Open Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"700\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#2F6E89\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Open Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"700\";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:\"#2F6E89\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Open Sans\";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:\"#2F6E89\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Open Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;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.2;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#2F6E89\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Open Sans\";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\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#2F6E89\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Open Sans\";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:\"500\";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:4:\"Lato\";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:\"400\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#4FB2E5\";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:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:16:{s:17:\"button_text_color\";s:0:\"\";s:23:\"button_background_color\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:17:\"link_normal_color\";s:0:\"\";s:8:\"h1_color\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";s:16:\"form_label_color\";s:0:\"\";s:27:\"form_field_background_color\";s:0:\"\";s:21:\"form_field_text_color\";s:0:\"\";s:23:\"form_field_border_color\";s:0:\"\";s:29:\"form_field_focus_border_color\";s:0:\"\";s:27:\"form_field_focus_text_color\";s:0:\"\";}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:4:\"Lato\";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: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.8;s:5:\"sizes\";a:0:{}}s:16:\"form_label_color\";s:7:\"#54595F\";s:21:\"form_field_text_color\";s:7:\"#54595F\";s:27:\"form_field_background_color\";s:7:\"#DCF0FA\";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:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#DCF0FA\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"8\";s:5:\"right\";s:1:\"8\";s:6:\"bottom\";s:1:\"8\";s:4:\"left\";s:1:\"8\";s:8:\"isLinked\";b:1;}s:43:\"form_field_focus_box_shadow_box_shadow_type\";s:3:\"yes\";s:38:\"form_field_focus_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:0;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.5)\";}s:47:\"form_field_focus_box_shadow_box_shadow_position\";s:5:\"inset\";s:30:\"form_field_focus_border_border\";s:5:\"solid\";s:29:\"form_field_focus_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"2\";s:6:\"bottom\";s:1:\"2\";s:4:\"left\";s:1:\"2\";s:8:\"isLinked\";b:1;}s:29:\"form_field_focus_border_color\";s:7:\"#4FB2E5\";s:27:\"form_field_focus_text_color\";s:7:\"#2F6E89\";}'),(131,27,'_elementor_data','[]'),(132,27,'_elementor_page_assets','a:0:{}'),(133,28,'_wp_attached_file','2023/05/dots.png'),(134,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:105;s:6:\"height\";i:158;s:4:\"file\";s:16:\"2023/05/dots.png\";s:8:\"filesize\";i:4098;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"dots-105x150.png\";s:5:\"width\";i:105;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4570;}}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:{}}}'),(135,28,'_elementor_source_image_hash','d9ce220fad254030e64ac0c3648a4e8833107811'),(136,29,'_wp_attached_file','2023/05/Mask-Group.png'),(137,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:133;s:6:\"height\";i:128;s:4:\"file\";s:22:\"2023/05/Mask-Group.png\";s:8:\"filesize\";i:3800;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:{}}}'),(138,29,'_elementor_source_image_hash','12a91df6a80c77bf38441523e59d60a30d41e900'),(139,30,'_wp_attached_file','2023/05/Rectangle-5.png'),(140,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:527;s:6:\"height\";i:576;s:4:\"file\";s:23:\"2023/05/Rectangle-5.png\";s:8:\"filesize\";i:6313;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Rectangle-5-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Rectangle-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2045;}}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:{}}}'),(141,30,'_elementor_source_image_hash','0235c1815dc1c639f3c1059260ccc256378236cd'),(142,31,'_wp_attached_file','2023/05/Group-7-1.png'),(143,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2023/05/Group-7-1.png\";s:8:\"filesize\";i:3121;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:{}}}'),(144,31,'_elementor_source_image_hash','15d8934d11388299d0f5a0569222c5a801e3989d'),(145,32,'_wp_attached_file','2023/05/Logo.png'),(146,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:155;s:6:\"height\";i:30;s:4:\"file\";s:16:\"2023/05/Logo.png\";s:8:\"filesize\";i:2625;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"Logo-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2861;}}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:{}}}'),(147,32,'_elementor_source_image_hash','cc6960df6bcb31874f83b57f55d42c04a0fe34ad'),(148,33,'_elementor_edit_mode','builder'),(149,33,'_elementor_template_type','page'),(150,34,'_wp_attached_file','2023/05/Group-8-1.png'),(151,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2023/05/Group-8-1.png\";s:8:\"filesize\";i:3126;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:{}}}'),(152,34,'_elementor_source_image_hash','f290d013ece5ad7e353f0a7fa2457f62b35ff736'),(153,35,'_wp_attached_file','2023/05/Group-9-1.png'),(154,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2023/05/Group-9-1.png\";s:8:\"filesize\";i:3049;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:{}}}'),(155,35,'_elementor_source_image_hash','e48b7ec937166c42598d4572684ffb73599b4bb5'),(156,33,'_elementor_version','3.13.4'),(157,33,'_elementor_data','[{\"id\":\"591f1075\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4318180d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"764f3885\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"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\"}],\"isInner\":false},{\"id\":\"7619433d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"7ea597a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"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\":\"a3743ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\",\"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}]'),(158,36,'_elementor_edit_mode','builder'),(159,36,'_elementor_template_type','page'),(160,36,'_elementor_version','3.13.4'),(161,36,'_elementor_data','[{\"id\":\"591f1075\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4318180d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"764f3885\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"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\"}],\"isInner\":false},{\"id\":\"7619433d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"7ea597a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"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\":\"a3743ce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\",\"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}]'),(162,33,'_elementor_page_assets','a:0:{}'),(163,33,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(164,33,'_wp_page_template','default'),(165,33,'envato_tk_source_kit','23'),(166,33,'envato_tk_source_index','12'),(167,37,'_wp_attached_file','2023/05/doctor-hero-21.png'),(168,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:438;s:6:\"height\";i:675;s:4:\"file\";s:26:\"2023/05/doctor-hero-21.png\";s:8:\"filesize\";i:73672;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"doctor-hero-21-195x300.png\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"doctor-hero-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30314;}}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:{}}}'),(169,37,'_elementor_source_image_hash','08445ca85c52ad0c35f2c455b4b29b616f7d08b3'),(170,38,'_elementor_edit_mode','builder'),(171,38,'_elementor_template_type','page'),(172,39,'_wp_attached_file','2023/05/Group-35-1.png'),(173,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2023/05/Group-35-1.png\";s:8:\"filesize\";i:484;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:{}}}'),(174,39,'_elementor_source_image_hash','b41dbeec21eb601accd7d60666caf2630de6205c'),(175,38,'_elementor_version','3.13.4'),(176,38,'_elementor_data','[{\"id\":\"167b4ae6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ad2873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d2a52f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Free Medical Checkup.<br>Let\'s Connect With Us!\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"39dec5ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"},{\"id\":\"2f306cae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"size\":\"md\",\"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\":\"74893261\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73cdfec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.245999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c5ec4fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\",\"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\":\"image\"},{\"id\":\"60416f49\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4883f2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.731999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"4cccc8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"194f9eca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"25a3c54b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"714e374\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fbf87fd\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6f99f6b\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e347cce\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=dbc07a0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"61d5eb23\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"6bc6ed15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"15722e72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gomedic Building, Sesame Street London, United Kingdom\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"714e374\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"hello@gomedic.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"e993428\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(001) 2341 2342\",\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"_id\":\"a6ee920\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"icon_color\":\"#2F6E89\",\"text_color\":\"#4B4B4B\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"\",\"icon_color\":\"globals\\/colors?id=dbc07a0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"17b9fe17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32c92e87\",\"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\":\"4ca3593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gomedic Template Kit By Rootlayers\",\"header_size\":\"div\",\"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\":\"heading\"}],\"isInner\":false},{\"id\":\"7a92d823\",\"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\":\"1ef3c0d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"@ All Rights Reserved\",\"header_size\":\"div\",\"align\":\"right\",\"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\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(177,40,'_wp_attached_file','2023/05/Group-38-1.png'),(178,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2023/05/Group-38-1.png\";s:8:\"filesize\";i:931;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:{}}}'),(179,40,'_elementor_source_image_hash','c3ba74533301f96bdc8fcaa94424492b8211fbf0'),(180,41,'_elementor_edit_mode','builder'),(181,41,'_elementor_template_type','page'),(182,41,'_elementor_version','3.13.4'),(183,41,'_elementor_data','[{\"id\":\"167b4ae6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ad2873\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d2a52f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Free Medical Checkup.<br>Let\'s Connect With Us!\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"39dec5ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"},{\"id\":\"2f306cae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"size\":\"md\",\"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\":\"74893261\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73cdfec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.245999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c5ec4fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\",\"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\":\"image\"},{\"id\":\"60416f49\",\"elType\":\"widget\",\"settings\":{\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4883f2a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.731999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"4cccc8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"194f9eca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"25a3c54b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"714e374\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fbf87fd\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6f99f6b\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e347cce\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=dbc07a0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"61d5eb23\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"6bc6ed15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"15722e72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gomedic Building, Sesame Street London, United Kingdom\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"714e374\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"hello@gomedic.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"e993428\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(001) 2341 2342\",\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"_id\":\"a6ee920\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"icon_color\":\"#2F6E89\",\"text_color\":\"#4B4B4B\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"\",\"icon_color\":\"globals\\/colors?id=dbc07a0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"17b9fe17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32c92e87\",\"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\":\"4ca3593\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gomedic Template Kit By Rootlayers\",\"header_size\":\"div\",\"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\":\"heading\"}],\"isInner\":false},{\"id\":\"7a92d823\",\"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\":\"1ef3c0d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"@ All Rights Reserved\",\"header_size\":\"div\",\"align\":\"right\",\"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\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(184,38,'_elementor_page_assets','a:0:{}'),(185,38,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(186,38,'_wp_page_template','default'),(187,38,'envato_tk_source_kit','23'),(188,38,'envato_tk_source_index','11'),(189,42,'_wp_attached_file','2023/05/Group-37-1.png'),(190,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2023/05/Group-37-1.png\";s:8:\"filesize\";i:685;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:{}}}'),(191,42,'_elementor_source_image_hash','6687167225add84654bbfdedfd7fd8019b2fdb08'),(192,43,'_wp_attached_file','2023/05/Group-36-1.png'),(193,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:22:\"2023/05/Group-36-1.png\";s:8:\"filesize\";i:818;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:{}}}'),(194,43,'_elementor_source_image_hash','5302f7611dc2474d1316eb22424fd0acd352757b'),(195,44,'_wp_attached_file','2023/05/Rectangle-12.png'),(196,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:457;s:6:\"height\";i:442;s:4:\"file\";s:24:\"2023/05/Rectangle-12.png\";s:8:\"filesize\";i:5805;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Rectangle-12-300x290.png\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Rectangle-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1992;}}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:{}}}'),(197,44,'_elementor_source_image_hash','767b1500ffb5ad72ac3c09b607d861e170954eba'),(198,45,'_wp_attached_file','2023/05/doctors-smile.png'),(199,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:469;s:6:\"height\";i:532;s:4:\"file\";s:25:\"2023/05/doctors-smile.png\";s:8:\"filesize\";i:78239;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"doctors-smile-264x300.png\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90606;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"doctors-smile-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32863;}}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:{}}}'),(200,45,'_elementor_source_image_hash','ece4d500dab6e834e0f9ee39b33313a5fbdd9fa0'),(201,46,'_wp_attached_file','2023/05/team6.png'),(202,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:298;s:6:\"height\";i:394;s:4:\"file\";s:17:\"2023/05/team6.png\";s:8:\"filesize\";i:37405;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team6-227x300.png\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70188;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29006;}}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:{}}}'),(203,46,'_elementor_source_image_hash','c46f3d04546f7a178c1c8be8991085c936d5188a'),(204,47,'_wp_attached_file','2023/05/team1.png'),(205,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:298;s:6:\"height\";i:394;s:4:\"file\";s:17:\"2023/05/team1.png\";s:8:\"filesize\";i:34877;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team1-227x300.png\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61822;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24546;}}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:{}}}'),(206,47,'_elementor_source_image_hash','3f7b6790b9e51db66745c1e05938744e1b341826'),(207,48,'_wp_attached_file','2023/05/team3.png'),(208,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:298;s:6:\"height\";i:394;s:4:\"file\";s:17:\"2023/05/team3.png\";s:8:\"filesize\";i:44625;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team3-227x300.png\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33250;}}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:{}}}'),(209,48,'_elementor_source_image_hash','8be2d0492889eb8d3d9135c4f1a117edd7d0c294'),(210,49,'_wp_attached_file','2023/05/team4.png'),(211,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:298;s:6:\"height\";i:394;s:4:\"file\";s:17:\"2023/05/team4.png\";s:8:\"filesize\";i:32911;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team4-227x300.png\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59180;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24339;}}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:{}}}'),(212,49,'_elementor_source_image_hash','14c860ff4a5569ee7d40d56fe44eac93655260ea'),(213,50,'_wp_attached_file','2023/05/team3-1-1.png'),(214,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2023/05/team3-1-1.png\";s:8:\"filesize\";i:11648;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:{}}}'),(215,50,'_elementor_source_image_hash','7703fef80eb6a1fd35aa7329c02a369b53f221ac'),(216,51,'_wp_attached_file','2023/05/team5-1-1.png'),(217,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2023/05/team5-1-1.png\";s:8:\"filesize\";i:12177;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:{}}}'),(218,51,'_elementor_source_image_hash','caf936a17fd7ed12d440d5d2467e8c2229ca392e'),(219,52,'_wp_attached_file','2023/05/team1-1-1.png'),(220,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2023/05/team1-1-1.png\";s:8:\"filesize\";i:9325;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:{}}}'),(221,52,'_elementor_source_image_hash','268559220631cd0b0ce1c283719ada51c521bcd9'),(222,53,'_elementor_edit_mode','builder'),(223,53,'_elementor_template_type','page'),(224,53,'_elementor_version','3.13.4'),(225,54,'_elementor_edit_mode','builder'),(226,54,'_elementor_template_type','page'),(227,54,'_elementor_version','3.13.4'),(228,53,'_wp_page_template','default'),(229,53,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(230,53,'_elementor_data','[{\"id\":\"ebc9be4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=0bc8a88\",\"background_color_b\":\"globals\\/colors?id=aaad7ba\"},\"structure\":\"20\",\"content_position\":\"middle\",\"overflow\":\"hidden\",\"background_color\":\"#DCF0FA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"697e490c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.859999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60a72410\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"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\":\"heading\"},{\"id\":\"2a3173d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Medical Clinic For Your Healthcare\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_typography\":\"globals\\/typography?id=1ecb7ca\"},\"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\":\"heading\"},{\"id\":\"1572ca86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=dff91ab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"71f1fc35\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"size\":\"lg\",\"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},{\"id\":\"6fc72347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.140000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"236d0ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":21,\"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\":\"5a52ec7b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"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\"},{\"id\":\"5c442211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"align\":\"right\",\"_animation\":\"bounceIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":2,\"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\":\"3c95a812\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-7-1.png\"},\"_animation\":\"bounceInDown\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39ad9759\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-8-1.png\"},\"_animation\":\"bounceInLeft\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":28,\"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\":\"75541a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-9-1.png\"},\"_animation\":\"bounceInRight\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":3,\"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\":\"772530ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-hero-21.png\"},\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"4bb529f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"396ba5b\",\"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\":\"679384ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4a9ae320\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Gomedic For<br>Your Healthcare?\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c0e776e\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"77c8a518\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ec75a2d\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Online Reservation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-35-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"59a68663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"513e4fd9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All Specialist\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-38-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"2763bba1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b16703e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Medical Record\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-37-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"77b3a919\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15dfce61\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Customer Support\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-36-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false}],\"isInner\":false},{\"id\":\"629c1b57\",\"elType\":\"section\",\"settings\":{\"content_position\":\"bottom\",\"structure\":\"30\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"777520f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.909999999999997,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f4f7f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"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\"},{\"id\":\"3f5aa14f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"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\"},{\"id\":\"3bbb5970\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-12.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"781ea4b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctors-smile.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5e17ee28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.5589999999999993,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"13ab1d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.139000000000003,\"margin_mobile\":{\"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\":\"2fee109b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\",\"header_size\":\"div\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"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\":\"heading\"},{\"id\":\"7e6eea0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Doctor With Years Of Experince\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"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\":\"heading\"},{\"id\":\"5b594160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"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\":\"text-editor\"},{\"id\":\"5e5d2374\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem Ipsum Dolor Sit Amet\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c7c702\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Luctus Nec Mattis Dapibus\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5ef4068\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Consectur Adipising ut elit\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"85be780\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#4FB2E5\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"text_color\":\"#4FB2E5\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=219ae0c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"632f60e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"size\":\"md\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},{\"id\":\"4a7d26fe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"288c0510\",\"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\":\"1ef8d391\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"714f22eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Professionals\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"14221613\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c53cfa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"5a19f40d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"621baf30\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c941ae2\",\"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\":\"7dd401a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"797dd92d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team6.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"13b5623e\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"53c5ada1\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"12975676\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"429ddaf0\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"181245\",\"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\":\"30c73d27\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"6ca25d7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7d595a37\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f1ecedf\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"53bf96b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"1ec4a266\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19ba5fd0\",\"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\":\"5babaf6a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"33d50be6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5866f692\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1001f6d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"589f205\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"3179bd9f\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a6fa8\",\"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\":\"7b7b6f12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"4e88c930\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team4.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"738e3f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2d3f5006\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7a1102\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee2f0be\",\"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\":\"bdc841d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimony\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3bdffbf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Patient Say About Us\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3ea0242a\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bdea29d\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"6ad39499\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"3d7147da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e472894\",\"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\":\"42478658\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"79736373\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"4daf1af2\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"caa0f03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"1eba7a31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"824a36c\",\"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\":\"6a909a20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team5-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"30810103\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"255f5c78\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ba0d223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"5974749f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7975c7b6\",\"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\":\"5de25ad6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"764f6ad6\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"2f919230\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4a7fbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0ad4ee\",\"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\":\"39b6fd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6a87722b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Doctor Specialist &amp;<br>Experience\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54c9225c\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"410276af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"616e2be1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Happy Patients\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"a3e3928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"4085f7e2\",\"elType\":\"widget\",\"settings\":{\"ending_number\":70,\"suffix\":\"+\",\"title\":\"Team Members\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"314aead2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"1a2ef421\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"suffix\":\"+\",\"title\":\"Year Experience\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"counter-title\":\"Experience\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"1049af4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"6157c012\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Global Awards\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(231,55,'_elementor_edit_mode','builder'),(232,55,'_elementor_template_type','page'),(233,55,'_elementor_version','3.13.4'),(234,55,'_wp_page_template','default'),(235,55,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(236,55,'_elementor_data','[{\"id\":\"ebc9be4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=0bc8a88\",\"background_color_b\":\"globals\\/colors?id=aaad7ba\"},\"structure\":\"20\",\"content_position\":\"middle\",\"overflow\":\"hidden\",\"background_color\":\"#DCF0FA\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"697e490c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.859999999999999,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60a72410\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"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\":\"heading\"},{\"id\":\"2a3173d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Medical Clinic For Your Healthcare\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_typography\":\"globals\\/typography?id=1ecb7ca\"},\"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\":\"heading\"},{\"id\":\"1572ca86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=dff91ab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"71f1fc35\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"size\":\"lg\",\"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},{\"id\":\"6fc72347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.140000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"236d0ec7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":21,\"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\":\"5a52ec7b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"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\"},{\"id\":\"5c442211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"align\":\"right\",\"_animation\":\"bounceIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":2,\"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\":\"3c95a812\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-7-1.png\"},\"_animation\":\"bounceInDown\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39ad9759\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-8-1.png\"},\"_animation\":\"bounceInLeft\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":28,\"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\":\"75541a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-9-1.png\"},\"_animation\":\"bounceInRight\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":3,\"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\":\"772530ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-hero-21.png\"},\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"4bb529f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"396ba5b\",\"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\":\"679384ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4a9ae320\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Gomedic For<br>Your Healthcare?\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c0e776e\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"77c8a518\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ec75a2d\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Online Reservation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-35-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"59a68663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"513e4fd9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All Specialist\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-38-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"2763bba1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b16703e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Medical Record\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-37-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false},{\"id\":\"77b3a919\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15dfce61\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Customer Support\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-36-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":false}],\"isInner\":false},{\"id\":\"629c1b57\",\"elType\":\"section\",\"settings\":{\"content_position\":\"bottom\",\"structure\":\"30\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"777520f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.909999999999997,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f4f7f9d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"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\"},{\"id\":\"3f5aa14f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"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\"},{\"id\":\"3bbb5970\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-12.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"781ea4b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctors-smile.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5e17ee28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.5589999999999993,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"13ab1d89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.139000000000003,\"margin_mobile\":{\"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\":\"2fee109b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\",\"header_size\":\"div\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"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\":\"heading\"},{\"id\":\"7e6eea0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Doctor With Years Of Experince\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"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\":\"heading\"},{\"id\":\"5b594160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"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\":\"text-editor\"},{\"id\":\"5e5d2374\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem Ipsum Dolor Sit Amet\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c7c702\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Luctus Nec Mattis Dapibus\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5ef4068\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Consectur Adipising ut elit\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"85be780\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#4FB2E5\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"text_color\":\"#4FB2E5\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=219ae0c\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"632f60e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"size\":\"md\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},{\"id\":\"4a7d26fe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"288c0510\",\"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\":\"1ef8d391\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"714f22eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Professionals\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"14221613\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c53cfa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"5a19f40d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"621baf30\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c941ae2\",\"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\":\"7dd401a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"797dd92d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team6.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"13b5623e\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"53c5ada1\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"12975676\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"429ddaf0\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"181245\",\"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\":\"30c73d27\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"6ca25d7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7d595a37\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f1ecedf\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"53bf96b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"1ec4a266\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19ba5fd0\",\"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\":\"5babaf6a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"33d50be6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5866f692\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1001f6d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"589f205\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"3179bd9f\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a6fa8\",\"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\":\"7b7b6f12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"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\":\"image\"},{\"id\":\"4e88c930\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team4.png\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"738e3f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2d3f5006\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"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\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7a1102\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ee2f0be\",\"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\":\"bdc841d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimony\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3bdffbf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Patient Say About Us\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3ea0242a\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bdea29d\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"6ad39499\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"3d7147da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e472894\",\"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\":\"42478658\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"79736373\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"4daf1af2\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"caa0f03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"1eba7a31\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"824a36c\",\"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\":\"6a909a20\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team5-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"30810103\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"255f5c78\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ba0d223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_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\":\"5974749f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7975c7b6\",\"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\":\"5de25ad6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"764f6ad6\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"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\":\"star-rating\"},{\"id\":\"2f919230\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f4a7fbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0ad4ee\",\"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\":\"39b6fd44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6a87722b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Doctor Specialist &amp;<br>Experience\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54c9225c\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":\"410276af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"616e2be1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Happy Patients\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"a3e3928\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"4085f7e2\",\"elType\":\"widget\",\"settings\":{\"ending_number\":70,\"suffix\":\"+\",\"title\":\"Team Members\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"314aead2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"1a2ef421\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"suffix\":\"+\",\"title\":\"Year Experience\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"counter-title\":\"Experience\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false},{\"id\":\"1049af4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_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\":\"6157c012\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Global Awards\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"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\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(237,53,'_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{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\";}}'),(238,53,'envato_tk_source_kit','23'),(239,53,'envato_tk_source_index','9'),(244,58,'_edit_lock','1685357031:1'),(246,11,'_wp_trash_meta_status','publish'),(247,11,'_wp_trash_meta_time','1685357216'),(248,11,'_wp_desired_post_slug','home'),(249,59,'_edit_lock','1685435765:1'),(250,59,'_elementor_edit_mode','builder'),(251,59,'_elementor_template_type','wp-page'),(252,59,'_elementor_version','3.13.4'),(253,59,'_elementor_pro_version','3.13.2'),(262,62,'_elementor_edit_mode','builder'),(263,62,'_elementor_template_type','wp-page'),(264,62,'_elementor_version','3.13.4'),(265,62,'_elementor_pro_version','3.13.2'),(266,63,'_elementor_edit_mode','builder'),(267,63,'_elementor_template_type','wp-page'),(268,63,'_elementor_version','3.13.4'),(269,63,'_elementor_pro_version','3.13.2'),(270,59,'_wp_page_template','default'),(271,59,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(272,59,'_elementor_data','[{\"id\":\"743d011e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=0bc8a88\",\"background_color_b\":\"globals\\/colors?id=aaad7ba\"},\"structure\":\"20\",\"content_position\":\"middle\",\"overflow\":\"hidden\",\"background_color\":\"#DCF0FA\"},\"elements\":[{\"id\":\"3e093b03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.859999999999999},\"elements\":[{\"id\":\"6e965a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e4d806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Medical Clinic For Your Healthcare\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_typography\":\"globals\\/typography?id=1ecb7ca\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27dd4fad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=dff91ab\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3baac3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"size\":\"lg\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"22f74485\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.140000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"546e9c01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d987309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59a54fda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"align\":\"right\",\"_animation\":\"bounceIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f99c0d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-7-1.png\"},\"_animation\":\"bounceInDown\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"de33ba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-8-1.png\"},\"_animation\":\"bounceInLeft\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ad58f71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-9-1.png\"},\"_animation\":\"bounceInRight\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bbb18c9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-hero-21.png\"},\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40b65ef3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2158be0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fa247d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e358c1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Gomedic For<br>Your Healthcare?\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbfd3a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"431e1ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"70aedb40\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Online Reservation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-35-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a78bdd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560cd66c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All Specialist\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-38-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"27efd5d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ce769c9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Medical Record\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-37-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"46508f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"225189ac\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Customer Support\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-36-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62e8353b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"bottom\",\"structure\":\"30\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59d2c569\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.909999999999997},\"elements\":[{\"id\":\"787c8bd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"528861d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6b0373\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-12.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"388ebf1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctors-smile.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11df6e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.5589999999999993},\"elements\":[],\"isInner\":false},{\"id\":\"604ce7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.139000000000003,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b66a3a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\",\"header_size\":\"div\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fe57e93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Doctor With Years Of Experince\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6b3b92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7948bb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem Ipsum Dolor Sit Amet\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c7c702\"},{\"text\":\"Luctus Nec Mattis Dapibus\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5ef4068\"},{\"text\":\"Consectur Adipising ut elit\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"85be780\"}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#4FB2E5\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"text_color\":\"#4FB2E5\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=219ae0c\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d10ad0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"size\":\"md\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd0e1da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71f390f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"614e30ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f7f6276\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Professionals\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47c31817\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79b1893a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fa20f41\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4698ee5c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c16123b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73e910ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14b2adc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team6.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"53139f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d7ff55a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4b7281aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6294f9ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57bc4bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72c1ed1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56349cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5098c0ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"afb82f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ae4e0de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5c636283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c567a99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3dcc75db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50b43010\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4acd67da\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a52f692\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ea1c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37da34cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54800239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bbbf1dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"327deb4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team4.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e76700b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"188a2da7\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b8994ef\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c41da3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"599d4e37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimony\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ea49408\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Patient Say About Us\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bbbc43c\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a8bf96\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"67f49c76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65cd007a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6e1bdcd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"30244729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4f09ed57\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"56e19b6\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"619c087d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"78762100\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"73634898\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"574f212\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team5-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"25f8bdc7\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"547a7480\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29181a75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"614ed25e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"53686bda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"491be7d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12e91ccc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"1ec055fb\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a356ca5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f4d1813\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e2f55f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56207163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Doctor Specialist &amp;<br>Experience\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30ddaf5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3582eb70\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b80d7ff\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Happy Patients\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"447b0c5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"334a14ca\",\"elType\":\"widget\",\"settings\":{\"ending_number\":70,\"suffix\":\"+\",\"title\":\"Team Members\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"24751355\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4dc602b6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"suffix\":\"+\",\"title\":\"Year Experience\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"counter-title\":\"Experience\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"1bb4dce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4286c03c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Global Awards\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(273,64,'_elementor_edit_mode','builder'),(274,64,'_elementor_template_type','wp-page'),(275,64,'_elementor_version','3.13.4'),(276,64,'_elementor_pro_version','3.13.2'),(277,64,'_wp_page_template','default'),(278,64,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(279,64,'_elementor_data','[{\"id\":\"743d011e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=0bc8a88\",\"background_color_b\":\"globals\\/colors?id=aaad7ba\"},\"structure\":\"20\",\"content_position\":\"middle\",\"overflow\":\"hidden\",\"background_color\":\"#DCF0FA\"},\"elements\":[{\"id\":\"3e093b03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.859999999999999},\"elements\":[{\"id\":\"6e965a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e4d806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Medical Clinic For Your Healthcare\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_typography\":\"globals\\/typography?id=1ecb7ca\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27dd4fad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=dff91ab\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3baac3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"size\":\"lg\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"22f74485\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.140000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"546e9c01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d987309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59a54fda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"align\":\"right\",\"_animation\":\"bounceIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f99c0d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-7-1.png\"},\"_animation\":\"bounceInDown\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"de33ba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-8-1.png\"},\"_animation\":\"bounceInLeft\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ad58f71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-9-1.png\"},\"_animation\":\"bounceInRight\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bbb18c9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-hero-21.png\"},\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40b65ef3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2158be0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fa247d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e358c1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Gomedic For<br>Your Healthcare?\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbfd3a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"431e1ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"70aedb40\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Online Reservation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-35-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a78bdd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560cd66c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All Specialist\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-38-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"27efd5d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ce769c9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Medical Record\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-37-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"46508f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"225189ac\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Customer Support\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-36-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62e8353b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"bottom\",\"structure\":\"30\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59d2c569\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.909999999999997},\"elements\":[{\"id\":\"787c8bd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"528861d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6b0373\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-12.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"388ebf1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctors-smile.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11df6e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.5589999999999993},\"elements\":[],\"isInner\":false},{\"id\":\"604ce7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.139000000000003,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b66a3a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\",\"header_size\":\"div\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fe57e93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Doctor With Years Of Experince\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6b3b92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7948bb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem Ipsum Dolor Sit Amet\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c7c702\"},{\"text\":\"Luctus Nec Mattis Dapibus\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5ef4068\"},{\"text\":\"Consectur Adipising ut elit\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"85be780\"}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#4FB2E5\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"text_color\":\"#4FB2E5\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=219ae0c\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d10ad0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"size\":\"md\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd0e1da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71f390f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"614e30ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f7f6276\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Professionals\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47c31817\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79b1893a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fa20f41\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4698ee5c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c16123b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73e910ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14b2adc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team6.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"53139f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d7ff55a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4b7281aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6294f9ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57bc4bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72c1ed1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56349cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5098c0ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"afb82f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ae4e0de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5c636283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c567a99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3dcc75db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50b43010\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4acd67da\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a52f692\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ea1c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37da34cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54800239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bbbf1dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"327deb4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team4.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e76700b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"188a2da7\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b8994ef\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c41da3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"599d4e37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimony\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ea49408\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Patient Say About Us\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bbbc43c\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a8bf96\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"67f49c76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65cd007a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"6e1bdcd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"30244729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4f09ed57\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"56e19b6\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"619c087d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"78762100\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"73634898\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"574f212\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team5-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"25f8bdc7\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"547a7480\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29181a75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"614ed25e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"53686bda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"491be7d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12e91ccc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"1ec055fb\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a356ca5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f4d1813\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e2f55f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56207163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Doctor Specialist &amp;<br>Experience\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30ddaf5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3582eb70\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b80d7ff\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Happy Patients\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"447b0c5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"334a14ca\",\"elType\":\"widget\",\"settings\":{\"ending_number\":70,\"suffix\":\"+\",\"title\":\"Team Members\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"24751355\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4dc602b6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"suffix\":\"+\",\"title\":\"Year Experience\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"counter-title\":\"Experience\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"1bb4dce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4286c03c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Global Awards\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(280,59,'_elementor_page_assets','a:1:{s:6:\"styles\";a:19:{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\";}}'),(281,65,'_edit_last','1'),(282,65,'_edit_lock','1685433957:1'),(283,65,'_wp_page_template','default'),(284,65,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(285,65,'ehf_target_exclude_locations','a:0:{}'),(286,65,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(287,65,'ehf_template_type','type_header'),(288,65,'_elementor_edit_mode','builder'),(289,65,'_elementor_template_type','wp-post'),(290,65,'_elementor_version','3.13.4'),(291,65,'_elementor_pro_version','3.13.2'),(293,65,'ekit_post_views_count','2'),(303,68,'_wp_page_template','default'),(304,68,'_elementor_edit_mode','builder'),(305,68,'_elementor_template_type','wp-post'),(306,68,'_elementor_version','3.13.4'),(307,68,'_elementor_pro_version','3.13.2'),(309,69,'_wp_page_template','default'),(310,69,'_elementor_edit_mode','builder'),(311,69,'_elementor_template_type','wp-post'),(312,69,'_elementor_version','3.13.4'),(313,69,'_elementor_pro_version','3.13.2'),(315,65,'_elementor_data','[{\"id\":\"4cecc603\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a74e111\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"61565e90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":78,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33e0d8d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":false},{\"id\":\"535cd0b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"29664bf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(316,70,'_wp_page_template','default'),(317,70,'_elementor_edit_mode','builder'),(318,70,'_elementor_template_type','wp-post'),(319,70,'_elementor_version','3.13.4'),(320,70,'_elementor_pro_version','3.13.2'),(322,70,'_elementor_data','[{\"id\":\"4cecc603\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"}},\"elements\":[{\"id\":\"3a74e111\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"61565e90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33e0d8d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":false},{\"id\":\"535cd0b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"29664bf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(323,65,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(326,71,'_edit_last','1'),(327,71,'_wp_page_template','default'),(328,71,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(329,71,'ehf_target_exclude_locations','a:0:{}'),(330,71,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(331,71,'ehf_template_type','type_footer'),(332,71,'_edit_lock','1685363437:1'),(333,71,'_elementor_edit_mode','builder'),(334,71,'_elementor_template_type','wp-post'),(335,71,'_elementor_version','3.13.4'),(336,71,'_elementor_pro_version','3.13.2'),(338,71,'ekit_post_views_count','2'),(348,74,'_wp_page_template','default'),(349,74,'_elementor_edit_mode','builder'),(350,74,'_elementor_template_type','wp-post'),(351,74,'_elementor_version','3.13.4'),(352,74,'_elementor_pro_version','3.13.2'),(354,75,'_wp_page_template','default'),(355,75,'_elementor_edit_mode','builder'),(356,75,'_elementor_template_type','wp-post'),(357,75,'_elementor_version','3.13.4'),(358,75,'_elementor_pro_version','3.13.2'),(360,71,'_elementor_data','[{\"id\":\"1eedd49d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"410d72eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"616ef527\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Free Medical Checkup.<br>Let\'s Connect With Us!\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187040e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f2a79c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e2bba3c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab505a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.245999999999999},\"elements\":[{\"id\":\"4db10724\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c6d9cdb\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2a3df313\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.731999999999999},\"elements\":[],\"isInner\":false},{\"id\":\"3feff2f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"70238a32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5255dc2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"714e374\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fbf87fd\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6f99f6b\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e347cce\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=dbc07a0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"64e99ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35e75c5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d51193c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gomedic Building, Sesame Street London, United Kingdom\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"714e374\"},{\"text\":\"hello@gomedic.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"e993428\"},{\"text\":\"(001) 2341 2342\",\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"_id\":\"a6ee920\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"icon_color\":\"#2F6E89\",\"text_color\":\"#4B4B4B\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"\",\"icon_color\":\"globals\\/colors?id=dbc07a0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e94d223\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66b91253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68dd0614\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gomedic Template Kit By Rootlayers\",\"header_size\":\"div\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"45e9e1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"487beb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"@ All Rights Reserved\",\"header_size\":\"div\",\"align\":\"right\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(361,76,'_wp_page_template','default'),(362,76,'_elementor_edit_mode','builder'),(363,76,'_elementor_template_type','wp-post'),(364,76,'_elementor_version','3.13.4'),(365,76,'_elementor_pro_version','3.13.2'),(367,76,'_elementor_data','[{\"id\":\"1eedd49d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"410d72eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"4\",\"bottom\":\"6\",\"left\":\"4\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[{\"id\":\"616ef527\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Free Medical Checkup.<br>Let\'s Connect With Us!\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"187040e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f2a79c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e2bba3c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab505a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":28.245999999999999},\"elements\":[{\"id\":\"4db10724\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c6d9cdb\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2a3df313\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.731999999999999},\"elements\":[],\"isInner\":false},{\"id\":\"3feff2f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"70238a32\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5255dc2e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"714e374\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fbf87fd\"},{\"text\":\"Careers\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6f99f6b\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e347cce\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=dbc07a0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"64e99ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35e75c5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Information\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d51193c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gomedic Building, Sesame Street London, United Kingdom\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"714e374\"},{\"text\":\"hello@gomedic.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"e993428\"},{\"text\":\"(001) 2341 2342\",\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"_id\":\"a6ee920\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"icon_color\":\"#2F6E89\",\"text_color\":\"#4B4B4B\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"\",\"icon_color\":\"globals\\/colors?id=dbc07a0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e94d223\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66b91253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68dd0614\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gomedic Template Kit By Rootlayers\",\"header_size\":\"div\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"45e9e1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"487beb5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"@ All Rights Reserved\",\"header_size\":\"div\",\"align\":\"right\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(368,71,'_elementor_page_assets','a:0:{}'),(378,78,'_wp_attached_file','2023/05/NMH-logo-5-02-1.png'),(379,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6081;s:6:\"height\";i:2229;s:4:\"file\";s:27:\"2023/05/NMH-logo-5-02-1.png\";s:8:\"filesize\";i:114991;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-1-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14668;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"NMH-logo-5-02-1-1024x375.png\";s:5:\"width\";i:1024;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-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:7249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-1-768x282.png\";s:5:\"width\";i:768;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"NMH-logo-5-02-1-1536x563.png\";s:5:\"width\";i:1536;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94025;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"NMH-logo-5-02-1-2048x751.png\";s:5:\"width\";i:2048;s:6:\"height\";i:751;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131271;}}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,79,'_wp_page_template','default'),(381,79,'_elementor_edit_mode','builder'),(382,79,'_elementor_template_type','wp-post'),(383,79,'_elementor_version','3.13.4'),(384,79,'_elementor_pro_version','3.13.2'),(385,79,'_elementor_data','[{\"id\":\"4cecc603\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"}},\"elements\":[{\"id\":\"3a74e111\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"61565e90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33e0d8d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":false},{\"id\":\"535cd0b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"29664bf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(386,79,'_elementor_page_assets','a:0:{}'),(387,80,'_wp_page_template','default'),(388,80,'_elementor_edit_mode','builder'),(389,80,'_elementor_template_type','wp-post'),(390,80,'_elementor_version','3.13.4'),(391,80,'_elementor_pro_version','3.13.2'),(392,80,'_elementor_data','[{\"id\":\"4cecc603\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=0bc8a88\"}},\"elements\":[{\"id\":\"3a74e111\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"61565e90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Logo.png\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33e0d8d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":false},{\"id\":\"535cd0b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"29664bf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(393,80,'_elementor_page_assets','a:0:{}'),(394,81,'_wp_page_template','default'),(395,81,'_elementor_edit_mode','builder'),(396,81,'_elementor_template_type','wp-post'),(397,81,'_elementor_version','3.13.4'),(398,81,'_elementor_pro_version','3.13.2'),(399,81,'_elementor_data','[{\"id\":\"4cecc603\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"structure\":\"33\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a74e111\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.649000000000001,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"61565e90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":78,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33e0d8d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.350999999999999,\"_inline_size_tablet\":50,\"_inline_size_mobile\":50},\"elements\":[],\"isInner\":false},{\"id\":\"535cd0b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19.978000000000002,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"29664bf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"align\":\"right\",\"size\":\"md\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(400,81,'_elementor_page_assets','a:0:{}'),(401,82,'_elementor_edit_mode','builder'),(402,82,'_elementor_template_type','wp-page'),(403,82,'_elementor_version','3.13.4'),(404,82,'_elementor_pro_version','3.13.2'),(405,82,'_wp_page_template','default'),(406,82,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(407,82,'_elementor_data','[{\"id\":\"743d011e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=0bc8a88\",\"background_color_b\":\"globals\\/colors?id=aaad7ba\"},\"structure\":\"20\",\"content_position\":\"middle\",\"overflow\":\"hidden\",\"background_color\":\"#DCF0FA\"},\"elements\":[{\"id\":\"3e093b03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.859999999999999},\"elements\":[{\"id\":\"6e965a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e4d806\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Medical Clinic For Your Healthcare\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=1ecb7ca\"},\"align_mobile\":\"center\",\"title_color\":\"#771341\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27dd4fad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=dff91ab\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3baac3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Appointment\",\"size\":\"lg\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"22f74485\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.140000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"546e9c01\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d987309\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_animation\":\"fadeIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-4,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59a54fda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"align\":\"right\",\"_animation\":\"bounceIn\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f99c0d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-7-1.png\"},\"_animation\":\"bounceInDown\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":1,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"de33ba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-8-1.png\"},\"_animation\":\"bounceInLeft\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ad58f71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-9-1.png\"},\"_animation\":\"bounceInRight\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bbb18c9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-hero-21.png\"},\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40b65ef3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2158be0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fa247d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Checkup\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e358c1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Gomedic For<br>Your Healthcare?\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fbfd3a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"431e1ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"70aedb40\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Online Reservation\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-35-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a78bdd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"560cd66c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All Specialist\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-38-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"27efd5d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ce769c9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Medical Record\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-37-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"46508f0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"225189ac\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Customer Support\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=2e7b7fa\"},\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Group-36-1.png\"},\"image_border_radius\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62e8353b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"bottom\",\"structure\":\"30\",\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"overflow\":\"hidden\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"59d2c569\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.909999999999997,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"787c8bd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Mask-Group.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"528861d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/dots.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"%\",\"size\":-6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6b0373\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-12.png\"},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_x_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"%\",\"size\":8,\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"388ebf1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctors-smile.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"11df6e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.5589999999999993},\"elements\":[],\"isInner\":false},{\"id\":\"604ce7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.139000000000003,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b66a3a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\",\"header_size\":\"div\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1fe57e93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Doctor With Years Of Experince\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6b3b92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7948bb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem Ipsum Dolor Sit Amet\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"3c7c702\"},{\"text\":\"Luctus Nec Mattis Dapibus\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"5ef4068\"},{\"text\":\"Consectur Adipising ut elit\",\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"_id\":\"85be780\"}],\"space_between\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_color\":\"#4FB2E5\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"text_color\":\"#4FB2E5\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=primary\",\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=219ae0c\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d10ad0f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"size\":\"md\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd0e1da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71f390f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"614e30ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f7f6276\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Professionals\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47c31817\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79b1893a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fa20f41\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4698ee5c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c16123b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73e910ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14b2adc8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team6.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"53139f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d7ff55a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4b7281aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"6294f9ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"57bc4bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"gradient\"},\"elements\":[{\"id\":\"72c1ed1f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"56349cd4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5098c0ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"afb82f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2ae4e0de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5c636283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c567a99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3dcc75db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50b43010\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4acd67da\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a52f692\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73ea1c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"37da34cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54800239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bbbf1dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/Rectangle-5.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"327deb4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team4.png\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e76700b\",\"elType\":\"widget\",\"settings\":{\"title\":\"dr. Harman White\",\"header_size\":\"h3\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2e7b7fa\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"188a2da7\",\"elType\":\"widget\",\"settings\":{\"title\":\"CEO & Director\",\"header_size\":\"div\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b8994ef\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c41da3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"599d4e37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimony\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ea49408\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Patient Say About Us\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bbbc43c\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"300\",\"bottom\":\"0\",\"left\":\"300\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a8bf96\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"67f49c76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"65cd007a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"\"},\"border_color\":\"#4FB2E5\"},\"elements\":[{\"id\":\"6e1bdcd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"30244729\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team3-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4f09ed57\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"56e19b6\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"619c087d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"78762100\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"73634898\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"574f212\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team5-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"25f8bdc7\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"547a7480\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"29181a75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"614ed25e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#4FB2E5\"},\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=aaad7ba\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"53686bda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"491be7d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/team1-1-1.png\"},\"width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=aaad7ba\"},\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"12e91ccc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"star-rating\"},{\"id\":\"1ec055fb\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\\\"\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jack Brown\",\"testimonial_job\":\"Designer\",\"__globals__\":{\"name_text_color\":\"globals\\/colors?id=dbc07a0\",\"content_typography_typography\":\"globals\\/typography?id=416cc31\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a356ca5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f4d1813\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e2f55f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Awards\",\"header_size\":\"div\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=96c53d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56207163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Doctor Specialist &amp;<br>Experience\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=2f108d8\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30ddaf5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3582eb70\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"b80d7ff\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Happy Patients\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"447b0c5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"334a14ca\",\"elType\":\"widget\",\"settings\":{\"ending_number\":70,\"suffix\":\"+\",\"title\":\"Team Members\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"24751355\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4dc602b6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":20,\"suffix\":\"+\",\"title\":\"Year Experience\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"counter-title\":\"Experience\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"1bb4dce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4286c03c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Global Awards\",\"number_color\":\"#2F6E89\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Lato\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"typography_number_font_weight\":\"300\",\"typography_number_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_number_line_height_tablet\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_color\":\"#2F6E89\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"24\",\"bottom\":\"24\",\"left\":\"24\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":10,\"blur\":0,\"spread\":0,\"color\":\"#DCF0FA\"},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=aaad7ba\",\"number_color\":\"globals\\/colors?id=dbc07a0\",\"title_color\":\"globals\\/colors?id=dbc07a0\",\"typography_number_typography\":\"globals\\/typography?id=56c7fcd\",\"_border_color\":\"globals\\/colors?id=0bc8a88\",\"typography_title_typography\":\"globals\\/typography?id=a71ef79\"},\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Lato\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(408,82,'_elementor_page_assets','a:1:{s:6:\"styles\";a:20:{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\";}}'),(410,59,'_wp_trash_meta_status','publish'),(411,59,'_wp_trash_meta_time','1685435326'),(412,59,'_wp_desired_post_slug','home'),(413,53,'_wp_trash_meta_status','publish'),(414,53,'_wp_trash_meta_time','1685435350'),(415,53,'_wp_desired_post_slug','home'),(416,38,'_wp_trash_meta_status','publish'),(417,38,'_wp_trash_meta_time','1685435350'),(418,38,'_wp_desired_post_slug','footer'),(419,33,'_wp_trash_meta_status','publish'),(420,33,'_wp_trash_meta_time','1685435351'),(421,33,'_wp_desired_post_slug','header'),(422,71,'_wp_trash_meta_status','publish'),(423,71,'_wp_trash_meta_time','1685435371'),(424,71,'_wp_desired_post_slug','footer'),(425,65,'_wp_trash_meta_status','publish'),(426,65,'_wp_trash_meta_time','1685435371'),(427,65,'_wp_desired_post_slug','header'),(428,83,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.19\";s:5:\"title\";s:47:\"Mediq - Health & Medical Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.0\";s:9:\"templates\";a:28:{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:26:\"https://kinforce.net/mediq\";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:84;}}}i:1;a:9:{s:4:\"name\";s:14:\"Header Section\";s:10:\"screenshot\";s:30:\"screenshots/header-section.jpg\";s:6:\"source\";s:29:\"templates/header-section.json\";s:11:\"preview_url\";s:55:\"https://kinforce.net/mediq/template-kit/header-section/\";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:90;}}}i:2;a:9:{s:4:\"name\";s:14:\"Footer Section\";s:10:\"screenshot\";s:30:\"screenshots/footer-section.jpg\";s:6:\"source\";s:29:\"templates/footer-section.json\";s:11:\"preview_url\";s:55:\"https://kinforce.net/mediq/template-kit/footer-section/\";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;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:95;}}}i:3;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:45:\"https://kinforce.net/mediq/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:139;}}}i:4;a:8:{s:4:\"name\";s:6:\"Home 2\";s:10:\"screenshot\";s:22:\"screenshots/home-2.jpg\";s:6:\"source\";s:21:\"templates/home-2.json\";s:11:\"preview_url\";s:47:\"https://kinforce.net/mediq/template-kit/home-2/\";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;}i:5;a:8:{s:4:\"name\";s:5:\"About\";s:10:\"screenshot\";s:21:\"screenshots/about.jpg\";s:6:\"source\";s:20:\"templates/about.json\";s:11:\"preview_url\";s:46:\"https://kinforce.net/mediq/template-kit/about/\";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:6;a:8:{s:4:\"name\";s:7:\"Gallery\";s:10:\"screenshot\";s:23:\"screenshots/gallery.jpg\";s:6:\"source\";s:22:\"templates/gallery.json\";s:11:\"preview_url\";s:48:\"https://kinforce.net/mediq/template-kit/gallery/\";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:7;a:8:{s:4:\"name\";s:7:\"Doctors\";s:10:\"screenshot\";s:23:\"screenshots/doctors.jpg\";s:6:\"source\";s:22:\"templates/doctors.json\";s:11:\"preview_url\";s:48:\"https://kinforce.net/mediq/template-kit/doctors/\";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:8;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:49:\"https://kinforce.net/mediq/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:9;a:8:{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:48:\"https://kinforce.net/mediq/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;}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:44:\"https://kinforce.net/mediq/template-kit/faq/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"section-faq\";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:45:\"https://kinforce.net/mediq/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: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:48:\"https://kinforce.net/mediq/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:13;a:9:{s:4:\"name\";s:18:\"Hero Image Section\";s:10:\"screenshot\";s:34:\"screenshots/hero-image-section.jpg\";s:6:\"source\";s:33:\"templates/hero-image-section.json\";s:11:\"preview_url\";s:59:\"https://kinforce.net/mediq/template-kit/hero-image-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:12:\"section-hero\";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:151;}}}i:14;a:8:{s:4:\"name\";s:20:\"Hero Image Section 2\";s:10:\"screenshot\";s:36:\"screenshots/hero-image-section-2.jpg\";s:6:\"source\";s:35:\"templates/hero-image-section-2.json\";s:11:\"preview_url\";s:61:\"https://kinforce.net/mediq/template-kit/hero-image-section-2/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:12:\"section-hero\";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:13:\"Intro Section\";s:10:\"screenshot\";s:29:\"screenshots/intro-section.jpg\";s:6:\"source\";s:28:\"templates/intro-section.json\";s:11:\"preview_url\";s:54:\"https://kinforce.net/mediq/template-kit/intro-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:16;a:9:{s:4:\"name\";s:13:\"About Section\";s:10:\"screenshot\";s:29:\"screenshots/about-section.jpg\";s:6:\"source\";s:28:\"templates/about-section.json\";s:11:\"preview_url\";s:54:\"https://kinforce.net/mediq/template-kit/about-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-about\";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:145;}}}i:17;a:9:{s:4:\"name\";s:16:\"Services Section\";s:10:\"screenshot\";s:32:\"screenshots/services-section.jpg\";s:6:\"source\";s:31:\"templates/services-section.json\";s:11:\"preview_url\";s:57:\"https://kinforce.net/mediq/template-kit/services-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:16:\"section-services\";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:148;}}}i:18;a:9:{s:4:\"name\";s:17:\"Fun Facts Section\";s:10:\"screenshot\";s:33:\"screenshots/fun-facts-section.jpg\";s:6:\"source\";s:32:\"templates/fun-facts-section.json\";s:11:\"preview_url\";s:58:\"https://kinforce.net/mediq/template-kit/fun-facts-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:154;}}}i:19;a:9:{s:4:\"name\";s:18:\"Services Section 2\";s:10:\"screenshot\";s:34:\"screenshots/services-section-2.jpg\";s:6:\"source\";s:33:\"templates/services-section-2.json\";s:11:\"preview_url\";s:59:\"https://kinforce.net/mediq/template-kit/services-section-2/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:16:\"section-services\";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:183;}}}i:20;a:9:{s:4:\"name\";s:20:\"Health Steps Section\";s:10:\"screenshot\";s:36:\"screenshots/health-steps-section.jpg\";s:6:\"source\";s:35:\"templates/health-steps-section.json\";s:11:\"preview_url\";s:61:\"https://kinforce.net/mediq/template-kit/health-steps-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:176;}}}i:21;a:8:{s:4:\"name\";s:20:\"Testimonials Section\";s:10:\"screenshot\";s:36:\"screenshots/testimonials-section.jpg\";s:6:\"source\";s:35:\"templates/testimonials-section.json\";s:11:\"preview_url\";s:61:\"https://kinforce.net/mediq/template-kit/testimonials-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:19:\"section-testimonial\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:22;a:8:{s:4:\"name\";s:12:\"Team Section\";s:10:\"screenshot\";s:28:\"screenshots/team-section.jpg\";s:6:\"source\";s:27:\"templates/team-section.json\";s:11:\"preview_url\";s:53:\"https://kinforce.net/mediq/template-kit/team-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:12:\"section-team\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:23;a:9:{s:4:\"name\";s:12:\"News Section\";s:10:\"screenshot\";s:28:\"screenshots/news-section.jpg\";s:6:\"source\";s:27:\"templates/news-section.json\";s:11:\"preview_url\";s:53:\"https://kinforce.net/mediq/template-kit/news-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:169;}}}i:24;a:8:{s:4:\"name\";s:15:\"Gallery Section\";s:10:\"screenshot\";s:31:\"screenshots/gallery-section.jpg\";s:6:\"source\";s:30:\"templates/gallery-section.json\";s:11:\"preview_url\";s:56:\"https://kinforce.net/mediq/template-kit/gallery-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:15:\"section-gallery\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:25;a:9:{s:4:\"name\";s:27:\"Book An Appointment Section\";s:10:\"screenshot\";s:43:\"screenshots/book-an-appointment-section.jpg\";s:6:\"source\";s:42:\"templates/book-an-appointment-section.json\";s:11:\"preview_url\";s:68:\"https://kinforce.net/mediq/template-kit/book-an-appointment-section/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:158;}}}i:26;a:8:{s:4:\"name\";s:29:\"Metform - Book An Appointment\";s:10:\"screenshot\";s:43:\"screenshots/metform-book-an-appointment.jpg\";s:6:\"source\";s:42:\"templates/metform-book-an-appointment.json\";s:11:\"preview_url\";s:68:\"https://kinforce.net/mediq/template-kit/metform-book-an-appointment/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:27;a:9:{s:4:\"name\";s:17:\"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:56:\"https://kinforce.net/mediq/template-kit/metform-contact/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";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:186;}}}}s:16:\"required_plugins\";a:4:{i:0;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"3.1.4\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}i:1;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.2.2\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:2;a:4:{s:4:\"name\";s:22:\"Happy Elementor Addons\";s:7:\"version\";s:6:\"2.22.1\";s:4:\"file\";s:33:\"happy-elementor-addons/plugin.php\";s:6:\"author\";s:6:\"weDevs\";}i:3;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:5:\"1.4.6\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}}s:6:\"images\";a:60:{i:0;a:8:{s:8:\"filename\";s:56:\"elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\";s:13:\"thumbnail_url\";s:110:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:29:\"templates/header-section.json\";s:4:\"name\";s:14:\"Header Section\";}}s:8:\"filesize\";i:3509;s:10:\"dimensions\";a:2:{i:0;i:161;i:1;i:50;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:71:\"https://elements.envato.com/logo-medical-cross-pharmacy-medicine-LBQR6G\";}i:1;a:8:{s:8:\"filename\";s:62:\"elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:29:\"templates/footer-section.json\";s:4:\"name\";s:14:\"Footer Section\";}}s:8:\"filesize\";i:2896;s:10:\"dimensions\";a:2:{i:0;i:129;i:1;i:38;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:71:\"https://elements.envato.com/logo-medical-cross-pharmacy-medicine-LBQR6G\";}i:2;a:8:{s:8:\"filename\";s:16:\"curve-dots-2.png\";s:13:\"thumbnail_url\";s:70:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/curve-dots-2.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:29:\"templates/footer-section.json\";s:4:\"name\";s:14:\"Footer Section\";}}s:8:\"filesize\";i:2378;s:10:\"dimensions\";a:2:{i:0;i:489;i:1;i:473;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:3;a:8:{s:8:\"filename\";s:55:\"young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\";s:13:\"thumbnail_url\";s:109:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:29:\"templates/footer-section.json\";s:4:\"name\";s:14:\"Footer Section\";}}s:8:\"filesize\";i:40585;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:588;}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-PLPK6TC\";}i:4;a:8:{s:8:\"filename\";s:30:\"doctor-at-hospital-R69SC2W.jpg\";s:13:\"thumbnail_url\";s:92:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/doctor-at-hospital-R69SC2W-800x346.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:33:\"templates/hero-image-section.json\";s:4:\"name\";s:18:\"Hero Image Section\";}}s:8:\"filesize\";i:77041;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:830;}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-R69SC2W\";}i:5;a:8:{s:8:\"filename\";s:69:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\";s:13:\"thumbnail_url\";s:131:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-800x346.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:33:\"templates/hero-image-section.json\";s:4:\"name\";s:18:\"Hero Image Section\";}}s:8:\"filesize\";i:108519;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:830;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF\";}i:6;a:8:{s:8:\"filename\";s:69:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\";s:13:\"thumbnail_url\";s:131:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-800x346.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:33:\"templates/hero-image-section.json\";s:4:\"name\";s:18:\"Hero Image Section\";}}s:8:\"filesize\";i:58180;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:830;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6\";}i:7;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-1.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/elements-medical-icon-line-styles-UTQXLZN-1.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}i:4;a:2:{s:6:\"source\";s:28:\"templates/intro-section.json\";s:4:\"name\";s:13:\"Intro Section\";}}s:8:\"filesize\";i:1372;s:10:\"dimensions\";a:2:{i:0;i:94;i:1;i:90;}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-UTQXLZN\";}i:8;a:8:{s:8:\"filename\";s:17:\"circle-dots-1.png\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/circle-dots-1.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}i:4;a:2:{s:6:\"source\";s:28:\"templates/intro-section.json\";s:4:\"name\";s:13:\"Intro Section\";}}s:8:\"filesize\";i:5020;s:10:\"dimensions\";a:2:{i:0;i:183;i:1;i:183;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:9;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-2.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/elements-medical-icon-line-styles-UTQXLZN-2.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:28:\"templates/intro-section.json\";s:4:\"name\";s:13:\"Intro Section\";}}s:8:\"filesize\";i:1454;s:10:\"dimensions\";a:2:{i:0;i:94;i:1;i:90;}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-UTQXLZN\";}i:10;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-3.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/elements-medical-icon-line-styles-UTQXLZN-3.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:28:\"templates/intro-section.json\";s:4:\"name\";s:13:\"Intro Section\";}}s:8:\"filesize\";i:1348;s:10:\"dimensions\";a:2:{i:0;i:94;i:1;i:90;}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-UTQXLZN\";}i:11;a:8:{s:8:\"filename\";s:26:\"round-building-CGY4TZ5.jpg\";s:13:\"thumbnail_url\";s:80:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/round-building-CGY4TZ5.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:28:\"templates/about-section.json\";s:4:\"name\";s:13:\"About Section\";}}s:8:\"filesize\";i:39999;s:10:\"dimensions\";a:2:{i:0;i:270;i:1;i:497;}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-CGY4TZ5\";}i:12;a:8:{s:8:\"filename\";s:62:\"portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:28:\"templates/about-section.json\";s:4:\"name\";s:13:\"About Section\";}}s:8:\"filesize\";i:39993;s:10:\"dimensions\";a:2:{i:0;i:270;i:1;i:400;}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-725FA62\";}i:13;a:8:{s:8:\"filename\";s:17:\"experience_bg.png\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/experience_bg.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:28:\"templates/about-section.json\";s:4:\"name\";s:13:\"About Section\";}}s:8:\"filesize\";i:7984;s:10:\"dimensions\";a:2:{i:0;i:180;i:1;i:181;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:14;a:8:{s:8:\"filename\";s:20:\"rectangle-dots-1.png\";s:13:\"thumbnail_url\";s:74:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/rectangle-dots-1.png\";s:9:\"templates\";a:11:{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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}i:6;a:2:{s:6:\"source\";s:28:\"templates/about-section.json\";s:4:\"name\";s:13:\"About Section\";}i:7;a:2:{s:6:\"source\";s:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}i:8;a:2:{s:6:\"source\";s:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}i:9;a:2:{s:6:\"source\";s:27:\"templates/team-section.json\";s:4:\"name\";s:12:\"Team Section\";}i:10;a:2:{s:6:\"source\";s:42:\"templates/book-an-appointment-section.json\";s:4:\"name\";s:27:\"Book An Appointment Section\";}}s:8:\"filesize\";i:1670;s:10:\"dimensions\";a:2:{i:0;i:257;i:1;i:134;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:15;a:8:{s:8:\"filename\";s:8:\"sign.jpg\";s:13:\"thumbnail_url\";s:62:\"https://kinforce.net/mediq/wp-content/uploads/2021/03/sign.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:28:\"templates/about-section.json\";s:4:\"name\";s:13:\"About Section\";}}s:8:\"filesize\";i:2793;s:10:\"dimensions\";a:2:{i:0;i:165;i:1;i:49;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:16;a:8:{s:8:\"filename\";s:17:\"light-blue-bg.jpg\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/light-blue-bg.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:1130;s:10:\"dimensions\";a:2:{i:0;i:5;i:1;i:5;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:17;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:2933;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:18;a:8:{s:8:\"filename\";s:17:\"circle-dots-3.png\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/circle-dots-3.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}i:4;a:2:{s:6:\"source\";s:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}i:5;a:2:{s:6:\"source\";s:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:9206;s:10:\"dimensions\";a:2:{i:0;i:132;i:1;i:132;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:19;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:3042;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:20;a:8:{s:8:\"filename\";s:17:\"circle-dots-2.png\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/circle-dots-2.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}i:4;a:2:{s:6:\"source\";s:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:9153;s:10:\"dimensions\";a:2:{i:0;i:132;i:1;i:132;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:21;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:3090;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:22;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:2666;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:23;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:2585;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:24;a:8:{s:8:\"filename\";s:67:\"elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:31:\"templates/services-section.json\";s:4:\"name\";s:16:\"Services Section\";}}s:8:\"filesize\";i:2597;s:10:\"dimensions\";a:2:{i:0;i:60;i:1;i:60;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:89:\"https://elements.envato.com/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5\";}i:25;a:8:{s:8:\"filename\";s:17:\"triangle-dots.png\";s:13:\"thumbnail_url\";s:71:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/triangle-dots.png\";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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}}s:8:\"filesize\";i:1374;s:10:\"dimensions\";a:2:{i:0;i:372;i:1;i:297;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:26;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-4.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-4.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:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}}s:8:\"filesize\";i:2219;s:10:\"dimensions\";a:2:{i:0;i:62;i:1;i:62;}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-UTQXLZN\";}i:27;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-5.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-5.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:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}}s:8:\"filesize\";i:2538;s:10:\"dimensions\";a:2:{i:0;i:62;i:1;i:62;}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-UTQXLZN\";}i:28;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-6.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-6.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:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}}s:8:\"filesize\";i:2257;s:10:\"dimensions\";a:2:{i:0;i:62;i:1;i:62;}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-UTQXLZN\";}i:29;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-7.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-7.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:32:\"templates/fun-facts-section.json\";s:4:\"name\";s:17:\"Fun Facts Section\";}}s:8:\"filesize\";i:2267;s:10:\"dimensions\";a:2:{i:0;i:62;i:1;i:62;}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-UTQXLZN\";}i:30;a:8:{s:8:\"filename\";s:51:\"the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\";s:13:\"thumbnail_url\";s:113:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/the-medical-team-standing-in-a-hospital-AVQYCPT-800x538.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:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:2;a:2:{s:6:\"source\";s:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:124898;s:10:\"dimensions\";a:2:{i:0;i:1250;i:1;i:841;}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-AVQYCPT\";}i:31;a:8:{s:8:\"filename\";s:20:\"rectangle-dots-2.png\";s:13:\"thumbnail_url\";s:82:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/rectangle-dots-2-800x268.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}i:4;a:2:{s:6:\"source\";s:42:\"templates/book-an-appointment-section.json\";s:4:\"name\";s:27:\"Book An Appointment Section\";}}s:8:\"filesize\";i:5364;s:10:\"dimensions\";a:2:{i:0;i:1062;i:1;i:356;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:32;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-8.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-8.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:2201;s:10:\"dimensions\";a:2:{i:0;i:55;i:1;i:55;}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-UTQXLZN\";}i:33;a:8:{s:8:\"filename\";s:47:\"elements-medical-icon-line-styles-UTQXLZN-9.png\";s:13:\"thumbnail_url\";s:101:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-9.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:2816;s:10:\"dimensions\";a:2:{i:0;i:55;i:1;i:55;}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-UTQXLZN\";}i:34;a:8:{s:8:\"filename\";s:48:\"elements-medical-icon-line-styles-UTQXLZN-10.png\";s:13:\"thumbnail_url\";s:102:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elements-medical-icon-line-styles-UTQXLZN-10.png\";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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:33:\"templates/services-section-2.json\";s:4:\"name\";s:18:\"Services Section 2\";}}s:8:\"filesize\";i:1909;s:10:\"dimensions\";a:2:{i:0;i:55;i:1;i:55;}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-UTQXLZN\";}i:35;a:8:{s:8:\"filename\";s:62:\"women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}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:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:4;a:2:{s:6:\"source\";s:35:\"templates/health-steps-section.json\";s:4:\"name\";s:20:\"Health Steps Section\";}}s:8:\"filesize\";i:47300;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:589;}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-5JCX2RT\";}i:36;a:8:{s:8:\"filename\";s:15:\"square-dots.png\";s:13:\"thumbnail_url\";s:69:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/square-dots.png\";s:9:\"templates\";a:8:{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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:5;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:6;a:2:{s:6:\"source\";s:35:\"templates/health-steps-section.json\";s:4:\"name\";s:20:\"Health Steps Section\";}i:7;a:2:{s:6:\"source\";s:35:\"templates/testimonials-section.json\";s:4:\"name\";s:20:\"Testimonials Section\";}}s:8:\"filesize\";i:266;s:10:\"dimensions\";a:2:{i:0;i:154;i:1;i:155;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:37;a:8:{s:8:\"filename\";s:26:\"business-woman-MCSQA8D.jpg\";s:13:\"thumbnail_url\";s:80:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/business-woman-MCSQA8D.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:5;a:2:{s:6:\"source\";s:35:\"templates/testimonials-section.json\";s:4:\"name\";s:20:\"Testimonials Section\";}}s:8:\"filesize\";i:3053;s:10:\"dimensions\";a:2:{i:0;i:73;i:1;i:73;}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-MCSQA8D\";}i:38;a:8:{s:8:\"filename\";s:62:\"elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:5;a:2:{s:6:\"source\";s:35:\"templates/testimonials-section.json\";s:4:\"name\";s:20:\"Testimonials Section\";}}s:8:\"filesize\";i:3613;s:10:\"dimensions\";a:2:{i:0;i:73;i:1;i:73;}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-K94ZGCY\";}i:39;a:8:{s:8:\"filename\";s:32:\"accountant-in-office-PHNC7LQ.jpg\";s:13:\"thumbnail_url\";s:86:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/accountant-in-office-PHNC7LQ.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:5;a:2:{s:6:\"source\";s:35:\"templates/testimonials-section.json\";s:4:\"name\";s:20:\"Testimonials Section\";}}s:8:\"filesize\";i:2955;s:10:\"dimensions\";a:2:{i:0;i:73;i:1;i:73;}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-PHNC7LQ\";}i:40;a:8:{s:8:\"filename\";s:62:\"group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-800x545.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:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:42:\"templates/book-an-appointment-section.json\";s:4:\"name\";s:27:\"Book An Appointment Section\";}}s:8:\"filesize\";i:109042;s:10:\"dimensions\";a:2:{i:0;i:1250;i:1;i:852;}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-EA2DVJT\";}i:41;a:8:{s:8:\"filename\";s:61:\"portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\";s:13:\"thumbnail_url\";s:115:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:5;a:2:{s:6:\"source\";s:27:\"templates/team-section.json\";s:4:\"name\";s:12:\"Team Section\";}}s:8:\"filesize\";i:45069;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}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-Q2QG548\";}i:42;a:8:{s:8:\"filename\";s:62:\"portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:27:\"templates/team-section.json\";s:4:\"name\";s:12:\"Team Section\";}}s:8:\"filesize\";i:30617;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}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-AKGKFFQ\";}i:43;a:8:{s:8:\"filename\";s:62:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.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:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:5;a:2:{s:6:\"source\";s:27:\"templates/team-section.json\";s:4:\"name\";s:12:\"Team Section\";}}s:8:\"filesize\";i:31408;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}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-S8JA2BF\";}i:44;a:8:{s:8:\"filename\";s:62:\"group-of-doctors-listening-to-presentation-on-medi-MHDT7H4.png\";s:13:\"thumbnail_url\";s:124:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/group-of-doctors-listening-to-presentation-on-medi-MHDT7H4-800x941.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:35:\"templates/hero-image-section-2.json\";s:4:\"name\";s:20:\"Hero Image Section 2\";}}s:8:\"filesize\";i:237645;s:10:\"dimensions\";a:2:{i:0;i:888;i:1;i:1044;}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-MHDT7H4\";}i:45;a:8:{s:8:\"filename\";s:16:\"curve-dots-3.png\";s:13:\"thumbnail_url\";s:70:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/curve-dots-3.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}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:35:\"templates/hero-image-section-2.json\";s:4:\"name\";s:20:\"Hero Image Section 2\";}}s:8:\"filesize\";i:2318;s:10:\"dimensions\";a:2:{i:0;i:489;i:1;i:473;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:46;a:8:{s:8:\"filename\";s:16:\"curve-dots-4.png\";s:13:\"thumbnail_url\";s:70:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/curve-dots-4.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:35:\"templates/hero-image-section-2.json\";s:4:\"name\";s:20:\"Hero Image Section 2\";}}s:8:\"filesize\";i:523;s:10:\"dimensions\";a:2:{i:0;i:262;i:1;i:183;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:47;a:8:{s:8:\"filename\";s:62:\"portrait-of-doctor-standing-in-hospital-on-medical-4H3NP4J.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-doctor-standing-in-hospital-on-medical-4H3NP4J-800x537.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:239459;s:10:\"dimensions\";a:2:{i:0;i:2500;i:1;i:1678;}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-4H3NP4J\";}i:48;a:8:{s:8:\"filename\";s:61:\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\";s:13:\"thumbnail_url\";s:123:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK-800x415.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:2;a:2:{s:6:\"source\";s:30:\"templates/gallery-section.json\";s:4:\"name\";s:15:\"Gallery Section\";}}s:8:\"filesize\";i:96067;s:10:\"dimensions\";a:2:{i:0;i:1060;i:1;i:550;}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-M9EPGDK\";}i:49;a:8:{s:8:\"filename\";s:62:\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5-800x415.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:2;a:2:{s:6:\"source\";s:30:\"templates/gallery-section.json\";s:4:\"name\";s:15:\"Gallery Section\";}}s:8:\"filesize\";i:124741;s:10:\"dimensions\";a:2:{i:0;i:1060;i:1;i:550;}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-ETHL3U5\";}i:50;a:8:{s:8:\"filename\";s:62:\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB-800x415.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:2;a:2:{s:6:\"source\";s:30:\"templates/gallery-section.json\";s:4:\"name\";s:15:\"Gallery Section\";}}s:8:\"filesize\";i:94981;s:10:\"dimensions\";a:2:{i:0;i:1060;i:1;i:550;}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-5NQGMQB\";}i:51;a:8:{s:8:\"filename\";s:57:\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\";s:13:\"thumbnail_url\";s:119:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU-800x415.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:2;a:2:{s:6:\"source\";s:30:\"templates/gallery-section.json\";s:4:\"name\";s:15:\"Gallery Section\";}}s:8:\"filesize\";i:88789;s:10:\"dimensions\";a:2:{i:0;i:1060;i:1;i:550;}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-4X8YFRU\";}i:52;a:8:{s:8:\"filename\";s:28:\"advice-of-doctor-GNDB7X7.jpg\";s:13:\"thumbnail_url\";s:90:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/advice-of-doctor-GNDB7X7-800x415.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:21:\"templates/home-2.json\";s:4:\"name\";s:6:\"Home 2\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:2;a:2:{s:6:\"source\";s:30:\"templates/gallery-section.json\";s:4:\"name\";s:15:\"Gallery Section\";}}s:8:\"filesize\";i:54333;s:10:\"dimensions\";a:2:{i:0;i:1060;i:1;i:550;}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-GNDB7X7\";}i:53;a:8:{s:8:\"filename\";s:12:\"title-bg.jpg\";s:13:\"thumbnail_url\";s:74:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/title-bg-800x114.jpg\";s:9:\"templates\";a:8:{i:0;a:2:{s:6:\"source\";s:20:\"templates/about.json\";s:4:\"name\";s:5:\"About\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:5;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:6;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:17156;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:274;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:54;a:8:{s:8:\"filename\";s:62:\"young-doctors-using-digital-tablet-discussing-diag-EH42CN6.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/young-doctors-using-digital-tablet-discussing-diag-EH42CN6.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:21429;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:384;}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-EH42CN6\";}i:55;a:8:{s:8:\"filename\";s:62:\"group-of-doctors-looking-at-x-ray-on-medical-confe-RDWUH4S.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/group-of-doctors-looking-at-x-ray-on-medical-confe-RDWUH4S.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:27852;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:384;}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-RDWUH4S\";}i:56;a:8:{s:8:\"filename\";s:62:\"thoughtful-radiologist-looking-at-animal-xray-in-v-78U726F.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/thoughtful-radiologist-looking-at-animal-xray-in-v-78U726F.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:30381;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:384;}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-78U726F\";}i:57;a:8:{s:8:\"filename\";s:67:\"portrait-of-female-doctor-with-stethoscope-wearing-725FA62-team.jpg\";s:13:\"thumbnail_url\";s:121:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-team.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}}s:8:\"filesize\";i:32877;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:86:\"https://elements.envato.com/portrait-of-female-doctor-with-stethoscope-wearing-725FA62\";}i:58;a:8:{s:8:\"filename\";s:62:\"portrait-of-male-doctor-standing-in-hospital-looki-K6FSXJS.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/portrait-of-male-doctor-standing-in-hospital-looki-K6FSXJS.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}}s:8:\"filesize\";i:56043;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}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-K6FSXJS\";}i:59;a:8:{s:8:\"filename\";s:33:\"smiling-female-doctor-9CYG24X.jpg\";s:13:\"thumbnail_url\";s:87:\"https://kinforce.net/mediq/wp-content/uploads/2021/04/smiling-female-doctor-9CYG24X.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/doctors.json\";s:4:\"name\";s:7:\"Doctors\";}}s:8:\"filesize\";i:28938;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:491;}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-9CYG24X\";}}}'),(429,83,'envato_tk_folder_name','74cd7bcc6a54346ae0301c339cb0f0bb'),(430,83,'envato_tk_builder','elementor'),(431,83,'envato_tk_source_zip_url','https://testhospital.in8.cdn-alpha.com/wp-content/uploads/template-kits/74cd7bcc6a54346ae0301c339cb0f0bb/source-83.zip'),(432,84,'_elementor_edit_mode','builder'),(433,84,'_elementor_template_type','kit'),(434,84,'_elementor_version','3.13.4'),(435,84,'_elementor_pro_version','3.13.2'),(436,85,'_elementor_edit_mode','builder'),(437,85,'_elementor_template_type','section'),(438,85,'_elementor_version','3.13.4'),(439,85,'_elementor_pro_version','3.13.2'),(440,84,'_wp_page_template','default'),(441,84,'_elementor_page_settings','a:97:{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:\"#000000\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#18B6E9\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#18B6E9\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"546d500\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"5279dcb\";s:5:\"title\";s:4:\"Grey\";s:5:\"color\";s:7:\"#8D8D8D\";}i:2;a:3:{s:3:\"_id\";s:7:\"bd6d90d\";s:5:\"title\";s:7:\"Special\";s:5:\"color\";s:7:\"#ED3B69\";}i:3;a:3:{s:3:\"_id\";s:7:\"9d83217\";s:5:\"title\";s:10:\"Light Blue\";s:5:\"color\";s:7:\"#EDF9FD\";}}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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"700\";}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:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:8:{i:0;a:6:{s:3:\"_id\";s:7:\"db34ff8\";s:5:\"title\";s:4:\"Menu\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:1;a:8:{s:3:\"_id\";s:7:\"ef9ed13\";s:5:\"title\";s:12:\"Hero Content\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;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:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:7:\"3762adb\";s:5:\"title\";s:14:\"Icon box title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:3;a:6:{s:3:\"_id\";s:7:\"a83836d\";s:5:\"title\";s:10:\"Small Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:\"400\";}i:4;a:6:{s:3:\"_id\";s:7:\"91a7101\";s:5:\"title\";s:11:\"Small title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:\"500\";}i:5;a:7:{s:3:\"_id\";s:7:\"8ca81ae\";s:5:\"title\";s:16:\"Icon box title 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:6;a:6:{s:3:\"_id\";s:7:\"c4a50be\";s:5:\"title\";s:15:\"Fun Fact Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";}i:7;a:8:{s:3:\"_id\";s:7:\"3b8ae93\";s:5:\"title\";s:13:\"Icon Box Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;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:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Rubik\";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:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:5:\"Rubik\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:9:\"site_name\";s:33:\"NMH - Heart &amp; Multispeciality\";s:16:\"site_description\";s:17:\"The Power to Heal\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:12:{s:10:\"body_color\";s:27:\"globals/colors?id=secondary\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:8:\"h1_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h2_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h3_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h5_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h6_color\";s:27:\"globals/colors?id=secondary\";s:17:\"button_text_color\";s:25:\"globals/colors?id=546d500\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=bd6d90d\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}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:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"700\";s:10:\"body_color\";s:7:\"#18B6E9\";s:17:\"link_normal_color\";s:7:\"#18B6E9\";s:8:\"h1_color\";s:7:\"#18B6E9\";s:8:\"h2_color\";s:7:\"#18B6E9\";s:8:\"h3_color\";s:7:\"#18B6E9\";s:8:\"h4_color\";s:7:\"#18B6E9\";s:8:\"h5_color\";s:7:\"#18B6E9\";s:8:\"h6_color\";s:7:\"#18B6E9\";s:28:\"button_typography_typography\";s:6:\"custom\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";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:\"16\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"14\";s:4:\"left\";s:2:\"30\";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:10;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;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:34:\"body_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:5;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}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:1;}s:9:\"site_logo\";a:5:{s:3:\"url\";s:87:\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\";s:2:\"id\";i:196;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:83:\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02.png\";s:2:\"id\";i:256;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(442,84,'_elementor_data','[]'),(443,86,'_elementor_edit_mode','builder'),(444,86,'_elementor_template_type','section'),(445,86,'_elementor_version','3.13.4'),(446,86,'_elementor_pro_version','3.13.2'),(447,86,'_wp_page_template','default'),(448,86,'_elementor_page_settings','a:92:{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:\"#000000\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#18B6E9\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#18B6E9\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"546d500\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"5279dcb\";s:5:\"title\";s:4:\"Grey\";s:5:\"color\";s:7:\"#8D8D8D\";}i:2;a:3:{s:3:\"_id\";s:7:\"bd6d90d\";s:5:\"title\";s:7:\"Special\";s:5:\"color\";s:7:\"#ED3B69\";}i:3;a:3:{s:3:\"_id\";s:7:\"9d83217\";s:5:\"title\";s:10:\"Light Blue\";s:5:\"color\";s:7:\"#EDF9FD\";}}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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"700\";}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:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:8:{i:0;a:6:{s:3:\"_id\";s:7:\"db34ff8\";s:5:\"title\";s:4:\"Menu\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:1;a:8:{s:3:\"_id\";s:7:\"ef9ed13\";s:5:\"title\";s:12:\"Hero Content\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;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:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:7:\"3762adb\";s:5:\"title\";s:14:\"Icon box title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:3;a:6:{s:3:\"_id\";s:7:\"a83836d\";s:5:\"title\";s:10:\"Small Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:\"400\";}i:4;a:6:{s:3:\"_id\";s:7:\"91a7101\";s:5:\"title\";s:11:\"Small title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:\"500\";}i:5;a:7:{s:3:\"_id\";s:7:\"8ca81ae\";s:5:\"title\";s:16:\"Icon box title 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:6;a:6:{s:3:\"_id\";s:7:\"c4a50be\";s:5:\"title\";s:15:\"Fun Fact Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";}i:7;a:8:{s:3:\"_id\";s:7:\"3b8ae93\";s:5:\"title\";s:13:\"Icon Box Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;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:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Rubik\";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:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:5:\"Rubik\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:9:\"site_name\";s:5:\"Mediq\";s:16:\"site_description\";s:35:\"Just another elementor template kit\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:12:{s:10:\"body_color\";s:27:\"globals/colors?id=secondary\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:8:\"h1_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h2_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h3_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h5_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h6_color\";s:27:\"globals/colors?id=secondary\";s:17:\"button_text_color\";s:25:\"globals/colors?id=546d500\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=bd6d90d\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}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:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"700\";s:10:\"body_color\";s:7:\"#18B6E9\";s:17:\"link_normal_color\";s:7:\"#18B6E9\";s:8:\"h1_color\";s:7:\"#18B6E9\";s:8:\"h2_color\";s:7:\"#18B6E9\";s:8:\"h3_color\";s:7:\"#18B6E9\";s:8:\"h4_color\";s:7:\"#18B6E9\";s:8:\"h5_color\";s:7:\"#18B6E9\";s:8:\"h6_color\";s:7:\"#18B6E9\";s:28:\"button_typography_typography\";s:6:\"custom\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";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:\"16\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"14\";s:4:\"left\";s:2:\"30\";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:10;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;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:34:\"body_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:5;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}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:1;}}'),(449,86,'_elementor_data','[]'),(450,84,'_elementor_page_assets','a:0:{}'),(451,84,'envato_tk_source_kit','83'),(452,84,'envato_tk_source_index','0'),(453,87,'_elementor_edit_mode','builder'),(454,87,'_elementor_template_type','kit'),(455,87,'_elementor_version','3.13.4'),(456,87,'_elementor_pro_version','3.13.2'),(457,87,'_wp_page_template','default'),(458,87,'_elementor_page_settings','a:92:{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:\"#000000\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#18B6E9\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#18B6E9\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"546d500\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"5279dcb\";s:5:\"title\";s:4:\"Grey\";s:5:\"color\";s:7:\"#8D8D8D\";}i:2;a:3:{s:3:\"_id\";s:7:\"bd6d90d\";s:5:\"title\";s:7:\"Special\";s:5:\"color\";s:7:\"#ED3B69\";}i:3;a:3:{s:3:\"_id\";s:7:\"9d83217\";s:5:\"title\";s:10:\"Light Blue\";s:5:\"color\";s:7:\"#EDF9FD\";}}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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"700\";}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:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:8:{i:0;a:6:{s:3:\"_id\";s:7:\"db34ff8\";s:5:\"title\";s:4:\"Menu\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:1;a:8:{s:3:\"_id\";s:7:\"ef9ed13\";s:5:\"title\";s:12:\"Hero Content\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;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:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:7:\"3762adb\";s:5:\"title\";s:14:\"Icon box title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:3;a:6:{s:3:\"_id\";s:7:\"a83836d\";s:5:\"title\";s:10:\"Small Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:\"400\";}i:4;a:6:{s:3:\"_id\";s:7:\"91a7101\";s:5:\"title\";s:11:\"Small title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:\"500\";}i:5;a:7:{s:3:\"_id\";s:7:\"8ca81ae\";s:5:\"title\";s:16:\"Icon box title 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:6;a:6:{s:3:\"_id\";s:7:\"c4a50be\";s:5:\"title\";s:15:\"Fun Fact Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";}i:7;a:8:{s:3:\"_id\";s:7:\"3b8ae93\";s:5:\"title\";s:13:\"Icon Box Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;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:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Rubik\";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:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:5:\"Rubik\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:9:\"site_name\";s:5:\"Mediq\";s:16:\"site_description\";s:35:\"Just another elementor template kit\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:12:{s:10:\"body_color\";s:27:\"globals/colors?id=secondary\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:8:\"h1_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h2_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h3_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h5_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h6_color\";s:27:\"globals/colors?id=secondary\";s:17:\"button_text_color\";s:25:\"globals/colors?id=546d500\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=bd6d90d\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}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:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"700\";s:10:\"body_color\";s:7:\"#18B6E9\";s:17:\"link_normal_color\";s:7:\"#18B6E9\";s:8:\"h1_color\";s:7:\"#18B6E9\";s:8:\"h2_color\";s:7:\"#18B6E9\";s:8:\"h3_color\";s:7:\"#18B6E9\";s:8:\"h4_color\";s:7:\"#18B6E9\";s:8:\"h5_color\";s:7:\"#18B6E9\";s:8:\"h6_color\";s:7:\"#18B6E9\";s:28:\"button_typography_typography\";s:6:\"custom\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";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:\"16\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"14\";s:4:\"left\";s:2:\"30\";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:10;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;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:34:\"body_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:5;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}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:1;}}'),(459,87,'_elementor_data','[]'),(460,87,'_elementor_page_assets','a:0:{}'),(461,88,'_wp_attached_file','2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png'),(462,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:161;s:6:\"height\";i:50;s:4:\"file\";s:64:\"2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\";s:8:\"filesize\";i:3509;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"elements-logo-medical-cross-pharmacy-medicine-LBQR6G-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3357;}}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:{}}}'),(463,88,'_elementor_source_image_hash','2551be9635679c608a244bba513f0246bad63951'),(464,89,'_wp_attached_file','2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png'),(465,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:38;s:4:\"file\";s:70:\"2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\";s:8:\"filesize\";i:2896;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:{}}}'),(466,89,'_elementor_source_image_hash','13f8d298a33542ec7080c87d93cb83872265c034'),(467,90,'_elementor_edit_mode','builder'),(468,90,'_elementor_template_type','section'),(469,91,'_wp_attached_file','2023/05/curve-dots-2.png'),(470,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:489;s:6:\"height\";i:473;s:4:\"file\";s:24:\"2023/05/curve-dots-2.png\";s:8:\"filesize\";i:2378;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"curve-dots-2-300x290.png\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"curve-dots-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3730;}}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:{}}}'),(471,91,'_elementor_source_image_hash','9f189a9cff1345ee09cd21b177c008ddcdc6f489'),(472,90,'_elementor_version','3.13.4'),(473,90,'_elementor_pro_version','3.13.2'),(474,92,'_wp_attached_file','2023/05/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg'),(475,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:588;s:4:\"file\";s:63:\"2023/05/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\";s:8:\"filesize\";i:40585;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"young-smiling-receptionist-in-dental-clinic-PLPK6TC-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"young-smiling-receptionist-in-dental-clinic-PLPK6TC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6564;}}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:{}}}'),(476,92,'_elementor_source_image_hash','230a95fd48f78fdf532fa285b831b0bf1f0746f8'),(477,93,'_elementor_edit_mode','builder'),(478,93,'_elementor_template_type','section'),(479,93,'_elementor_version','3.13.4'),(480,93,'_elementor_pro_version','3.13.2'),(481,90,'_wp_page_template','elementor_canvas'),(482,90,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(483,90,'_elementor_data','[{\"id\":\"1c16c0d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a71e4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"290c0875\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"38948876\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25063cb3\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_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\":\"ekit-nav-menu\"},{\"id\":\"7a695f44\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"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}]'),(484,94,'_elementor_edit_mode','builder'),(485,94,'_elementor_template_type','section'),(486,94,'_elementor_version','3.13.4'),(487,94,'_elementor_pro_version','3.13.2'),(488,94,'_wp_page_template','default'),(489,94,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(490,94,'_elementor_data','[{\"id\":\"1c16c0d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a71e4cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"290c0875\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"38948876\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25063cb3\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_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\":\"ekit-nav-menu\"},{\"id\":\"7a695f44\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"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}]'),(491,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(492,90,'envato_tk_source_kit','83'),(493,90,'envato_tk_source_index','1'),(494,95,'_elementor_edit_mode','builder'),(495,95,'_elementor_template_type','section'),(496,95,'_elementor_version','3.13.4'),(497,95,'_elementor_pro_version','3.13.2'),(498,96,'_elementor_edit_mode','builder'),(499,96,'_elementor_template_type','section'),(500,96,'_elementor_version','3.13.4'),(501,96,'_elementor_pro_version','3.13.2'),(502,95,'_wp_page_template','elementor_canvas'),(503,95,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(504,95,'_elementor_data','[{\"id\":\"36f8c39\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4718eb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cb1c112\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"89\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29b51f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"77b00c32\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"2107d6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"764cb49c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ab28fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6c54e949\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"6207e5d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55d89289\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"52755d5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"1d5335d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab62918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=bd6d90d\"},\"animation\":\"slideInRight\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7305a7ad\",\"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\":\"78d69609\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7db73dd9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"54a5740c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"67423281\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"6518fd24\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69224d0c\",\"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\":\"3ef45577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(505,97,'_elementor_edit_mode','builder'),(506,97,'_elementor_template_type','section'),(507,97,'_elementor_version','3.13.4'),(508,97,'_elementor_pro_version','3.13.2'),(509,97,'_wp_page_template','default'),(510,97,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(511,97,'_elementor_data','[{\"id\":\"36f8c39\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4718eb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cb1c112\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"89\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29b51f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"77b00c32\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#0000001F\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#222222\",\"ekit_socialmedia_border_border\":\"\",\"ekit_socialmedia_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_color\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialmedia_icon_hover_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialmedia_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialmedai_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialmedai_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialmedia_border_hover_border\":\"\",\"ekit_socialmedia_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialmedia_border_hover_color\":\"\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"2107d6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"764cb49c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ab28fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6c54e949\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"6207e5d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55d89289\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"52755d5e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"1d5335d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab62918\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=bd6d90d\"},\"animation\":\"slideInRight\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7305a7ad\",\"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\":\"78d69609\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7db73dd9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"54a5740c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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},{\"id\":\"67423281\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"6518fd24\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69224d0c\",\"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\":\"3ef45577\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(512,95,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(513,95,'envato_tk_source_kit','83'),(514,95,'envato_tk_source_index','2'),(515,98,'_wp_attached_file','2023/05/doctor-at-hospital-R69SC2W.jpg'),(516,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:38:\"2023/05/doctor-at-hospital-R69SC2W.jpg\";s:8:\"filesize\";i:77041;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"doctor-at-hospital-R69SC2W-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6007;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"doctor-at-hospital-R69SC2W-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"doctor-at-hospital-R69SC2W-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3335;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"doctor-at-hospital-R69SC2W-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23877;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"doctor-at-hospital-R69SC2W-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68422;}}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:{}}}'),(517,98,'_elementor_source_image_hash','ea37ffdcdfcfa2a86a3fabdda20461378ee6f09d'),(518,99,'_wp_attached_file','2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg'),(519,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:77:\"2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\";s:8:\"filesize\";i:108519;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:77:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7082;}s:5:\"large\";a:5:{s:4:\"file\";s:78:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27496;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:78:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80715;}}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:{}}}'),(520,99,'_elementor_source_image_hash','bab3fea27a0976ff762fb3459fd49d0214395a4b'),(521,100,'_wp_attached_file','2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg'),(522,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:830;s:4:\"file\";s:77:\"2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\";s:8:\"filesize\";i:58180;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:77:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5110;}s:5:\"large\";a:5:{s:4:\"file\";s:78:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3139;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-768x332.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20573;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:78:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-1536x664.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58917;}}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,100,'_elementor_source_image_hash','9a8bcbe9145bf13dd47652eeb91dd4c91abcbeb6'),(524,101,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png'),(525,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:94;s:6:\"height\";i:90;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\";s:8:\"filesize\";i:1372;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:{}}}'),(526,101,'_elementor_source_image_hash','b1210efd3c5ebc3d1857d456f9b4d0842c076fdc'),(527,102,'_wp_attached_file','2023/05/circle-dots-1.png'),(528,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:183;s:6:\"height\";i:183;s:4:\"file\";s:25:\"2023/05/circle-dots-1.png\";s:8:\"filesize\";i:5020;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"circle-dots-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:14831;}}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:{}}}'),(529,102,'_elementor_source_image_hash','cca051597edefeb8adfec3a2d7d89035ea305bee'),(530,103,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png'),(531,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:94;s:6:\"height\";i:90;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\";s:8:\"filesize\";i:1454;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:{}}}'),(532,103,'_elementor_source_image_hash','1427df7b29f2243b79c3805a0d3a2436cb11e5d0'),(533,104,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png'),(534,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:94;s:6:\"height\";i:90;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\";s:8:\"filesize\";i:1348;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:{}}}'),(535,104,'_elementor_source_image_hash','daaeb68a99e550493a14274db9c34f53fffe13c9'),(536,105,'_wp_attached_file','2023/05/round-building-CGY4TZ5.jpg'),(537,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:497;s:4:\"file\";s:34:\"2023/05/round-building-CGY4TZ5.jpg\";s:8:\"filesize\";i:39999;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"round-building-CGY4TZ5-163x300.jpg\";s:5:\"width\";i:163;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11833;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"round-building-CGY4TZ5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5779;}}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:{}}}'),(538,105,'_elementor_source_image_hash','23d98edc87cb8280e8d7f62c4b260a0c6969020d'),(539,106,'_wp_attached_file','2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg'),(540,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:400;s:4:\"file\";s:70:\"2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\";s:8:\"filesize\";i:39993;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"portrait-of-female-doctor-with-stethoscope-wearing-725FA62-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8212;}}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:{}}}'),(541,106,'_elementor_source_image_hash','410231a0995a12d1ed71e8d3b43f59646d594ca6'),(542,107,'_wp_attached_file','2023/05/experience_bg.png'),(543,107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:181;s:4:\"file\";s:25:\"2023/05/experience_bg.png\";s:8:\"filesize\";i:7984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"experience_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:7445;}}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:{}}}'),(544,107,'_elementor_source_image_hash','279dd2866268dcd30a1dc48542da2eab08d72922'),(545,108,'_wp_attached_file','2023/05/rectangle-dots-1.png'),(546,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:257;s:6:\"height\";i:134;s:4:\"file\";s:28:\"2023/05/rectangle-dots-1.png\";s:8:\"filesize\";i:1670;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"rectangle-dots-1-150x134.png\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:526;}}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:{}}}'),(547,108,'_elementor_source_image_hash','a7d34e5833b69b94dd39a4b08f5a64ea0682784d'),(548,109,'_wp_attached_file','2023/05/sign.jpg'),(549,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:165;s:6:\"height\";i:49;s:4:\"file\";s:16:\"2023/05/sign.jpg\";s:8:\"filesize\";i:2793;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"sign-150x49.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(550,109,'_elementor_source_image_hash','1db6fe6de871fcea419b6d62715f96e7035cb879'),(551,110,'_wp_attached_file','2023/05/light-blue-bg.jpg'),(552,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5;s:6:\"height\";i:5;s:4:\"file\";s:25:\"2023/05/light-blue-bg.jpg\";s:8:\"filesize\";i:1130;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:{}}}'),(553,110,'_elementor_source_image_hash','fa5adebfffb79bc722e4770823df27fba710e84c'),(554,111,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png'),(555,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\";s:8:\"filesize\";i:2933;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:{}}}'),(556,111,'_elementor_source_image_hash','381f28d6c85836fd92c59bc175490537f493bb23'),(557,112,'_wp_attached_file','2023/05/circle-dots-3.png'),(558,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:132;s:6:\"height\";i:132;s:4:\"file\";s:25:\"2023/05/circle-dots-3.png\";s:8:\"filesize\";i:9206;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:{}}}'),(559,112,'_elementor_source_image_hash','4e8f3e9128610d3b1b67c9229376a6132876c474'),(560,113,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png'),(561,113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\";s:8:\"filesize\";i:3042;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:{}}}'),(562,113,'_elementor_source_image_hash','cd427932a692c94a19a85f35e05c3312e89ff626'),(563,114,'_wp_attached_file','2023/05/circle-dots-2.png'),(564,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:132;s:6:\"height\";i:132;s:4:\"file\";s:25:\"2023/05/circle-dots-2.png\";s:8:\"filesize\";i:9153;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:{}}}'),(565,114,'_elementor_source_image_hash','ba6b1afe050fcfe601661acd6ced5069b3bd80f3'),(566,115,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png'),(567,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\";s:8:\"filesize\";i:3090;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:{}}}'),(568,115,'_elementor_source_image_hash','0553689fd270a87b1fc0f78ae418e4d6b2aace69'),(569,116,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png'),(570,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\";s:8:\"filesize\";i:2666;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:{}}}'),(571,116,'_elementor_source_image_hash','e74e2c03e73c5c3a41a63310941e11a328b0b2f2'),(572,117,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png'),(573,117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\";s:8:\"filesize\";i:2585;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:{}}}'),(574,117,'_elementor_source_image_hash','2d73b571871a0fefa9ad4ac5ca851c58385eceed'),(575,118,'_wp_attached_file','2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png'),(576,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:75:\"2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\";s:8:\"filesize\";i:2597;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:{}}}'),(577,118,'_elementor_source_image_hash','847f2e67efd376931245ecdcf3c7db9f5157426f'),(578,119,'_wp_attached_file','2023/05/triangle-dots.png'),(579,119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:372;s:6:\"height\";i:297;s:4:\"file\";s:25:\"2023/05/triangle-dots.png\";s:8:\"filesize\";i:1374;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"triangle-dots-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"triangle-dots-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4986;}}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:{}}}'),(580,119,'_elementor_source_image_hash','d504ba4e296a5bd34196de66c9a5a1bf015ef39a'),(581,120,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png'),(582,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\";s:8:\"filesize\";i:2219;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:{}}}'),(583,120,'_elementor_source_image_hash','4f1800e0ddc0ea79891ec181acd3e7370d619839'),(584,121,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png'),(585,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\";s:8:\"filesize\";i:2538;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:{}}}'),(586,121,'_elementor_source_image_hash','49ea2ffc642c0a3c1c2a193c1d6412441634d720'),(587,122,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png'),(588,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\";s:8:\"filesize\";i:2257;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:{}}}'),(589,122,'_elementor_source_image_hash','e096fe9e073bf579642f73621f6a899717a115c4'),(590,123,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png'),(591,123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\";s:8:\"filesize\";i:2267;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:{}}}'),(592,123,'_elementor_source_image_hash','5b0df0e17a95692d99413e86e1521c2455bd72d2'),(593,124,'_wp_attached_file','2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg'),(594,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1250;s:6:\"height\";i:841;s:4:\"file\";s:59:\"2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\";s:8:\"filesize\";i:124898;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17363;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"the-medical-team-standing-in-a-hospital-AVQYCPT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8147;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72191;}}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:{}}}'),(595,124,'_elementor_source_image_hash','002cd64f8ba455c5a428ecba43afe1dd7cf73d9c'),(596,125,'_wp_attached_file','2023/05/rectangle-dots-2.png'),(597,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1062;s:6:\"height\";i:356;s:4:\"file\";s:28:\"2023/05/rectangle-dots-2.png\";s:8:\"filesize\";i:5364;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"rectangle-dots-2-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8862;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"rectangle-dots-2-1024x343.png\";s:5:\"width\";i:1024;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"rectangle-dots-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5798;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"rectangle-dots-2-768x257.png\";s:5:\"width\";i:768;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36010;}}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:{}}}'),(598,125,'_elementor_source_image_hash','da342820809c5a5c05e80c7f3b011c7306840c58'),(599,126,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png'),(600,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\";s:8:\"filesize\";i:2201;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:{}}}'),(601,126,'_elementor_source_image_hash','48245ea4c663f3a4bfa419464ee1da2b38ae42df'),(602,127,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png'),(603,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:55:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\";s:8:\"filesize\";i:2816;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:{}}}'),(604,127,'_elementor_source_image_hash','4f3a2fd77bd0c5af160ecfb75049c3bee452e26d'),(605,128,'_wp_attached_file','2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png'),(606,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:56:\"2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\";s:8:\"filesize\";i:1909;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:{}}}'),(607,128,'_elementor_source_image_hash','13ccbf3e476516cb1407a3fd78ea0dafe18628df'),(608,129,'_wp_attached_file','2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg'),(609,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:589;s:4:\"file\";s:70:\"2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\";s:8:\"filesize\";i:47300;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21505;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8488;}}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:{}}}'),(610,129,'_elementor_source_image_hash','7d4bdaabfe1611fab90795d4185fa81992ec29ac'),(611,130,'_wp_attached_file','2023/05/square-dots.png'),(612,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:155;s:4:\"file\";s:23:\"2023/05/square-dots.png\";s:8:\"filesize\";i:266;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"square-dots-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5001;}}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:{}}}'),(613,130,'_elementor_source_image_hash','03d9e0294e1fe599734d9a33fc38716eaa164c7f'),(614,131,'_wp_attached_file','2023/05/business-woman-MCSQA8D.jpg'),(615,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:73;s:6:\"height\";i:73;s:4:\"file\";s:34:\"2023/05/business-woman-MCSQA8D.jpg\";s:8:\"filesize\";i:3053;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:{}}}'),(616,131,'_elementor_source_image_hash','299a179f64fa32eb60d913f12ca76f0337d5f3e4'),(617,132,'_wp_attached_file','2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg'),(618,132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:73;s:6:\"height\";i:73;s:4:\"file\";s:70:\"2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\";s:8:\"filesize\";i:3613;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:{}}}'),(619,132,'_elementor_source_image_hash','a1d2ff99279f9d901918a6aa24ac3f061b491865'),(620,133,'_wp_attached_file','2023/05/accountant-in-office-PHNC7LQ.jpg'),(621,133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:73;s:6:\"height\";i:73;s:4:\"file\";s:40:\"2023/05/accountant-in-office-PHNC7LQ.jpg\";s:8:\"filesize\";i:2955;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:{}}}'),(622,133,'_elementor_source_image_hash','6f7416e823f90c9123a783090bc69a15ca3540aa'),(623,134,'_wp_attached_file','2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg'),(624,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1250;s:6:\"height\";i:852;s:4:\"file\";s:70:\"2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\";s:8:\"filesize\";i:109042;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17723;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:698;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107574;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8016;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71133;}}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:{}}}'),(625,134,'_elementor_source_image_hash','54b9a58998083f8ae3a2aa0a2736149bc10d2d3a'),(626,135,'_wp_attached_file','2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg'),(627,135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:491;s:4:\"file\";s:69:\"2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\";s:8:\"filesize\";i:45069;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6993;}}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:{}}}'),(628,135,'_elementor_source_image_hash','37720b282bd579652c2eb87ffbe46ea4b16c1e71'),(629,136,'_wp_attached_file','2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg'),(630,136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:491;s:4:\"file\";s:70:\"2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\";s:8:\"filesize\";i:30617;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18685;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6906;}}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:{}}}'),(631,136,'_elementor_source_image_hash','770f4b0f5fe322a3c21be1b59be86f49ecdb6e7c'),(632,137,'_wp_attached_file','2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg'),(633,137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:491;s:4:\"file\";s:70:\"2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\";s:8:\"filesize\";i:31408;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6354;}}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:{}}}'),(634,137,'_elementor_source_image_hash','d5ea39aa666a855a601ec56de1b7ef3389c6f4bf'),(635,138,'_wp_attached_file','2023/05/placeholder-1.png'),(636,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/05/placeholder-1.png\";s:8:\"filesize\";i:3782;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6474;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21881;}}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:{}}}'),(637,138,'_elementor_source_image_hash','e433cf951bfd45e16f67159099589afdc73c1b67'),(638,139,'_elementor_edit_mode','builder'),(639,139,'_elementor_template_type','section'),(640,139,'_elementor_version','3.13.4'),(641,139,'_elementor_pro_version','3.13.2'),(642,140,'_elementor_edit_mode','builder'),(643,140,'_elementor_template_type','section'),(644,140,'_elementor_version','3.13.4'),(645,140,'_elementor_pro_version','3.13.2'),(646,139,'_wp_page_template','elementor_canvas'),(647,139,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (648,139,'_elementor_data','[{\"id\":\"54d6574\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1420d192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79376876\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19671ef6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_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\":\"text-editor\"},{\"id\":\"41b8149\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"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\":\"15f1b0e9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"3324cf97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":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\":\"172d9673\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"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}],\"isInner\":false},{\"id\":\"35106caf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64653b75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a265555\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"6b7af137\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19803b14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"1e919f62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"2c00177d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5d6b1e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b4f3c4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"140cf0c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24d7383f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7dccb057\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"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\":\"73d96226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d41441d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3726854\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"19b2e097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2ba9b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"b981c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"512d3d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bfcdfe9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"7c6f8224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"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\":\"13e721e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"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\":\"13b32660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1c9e384f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6258e7be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"4a3eba1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"2f899aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"307f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6e084561\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"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\":\"2b7832cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"61c89825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"656a9ce5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"580013c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"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\":\"6204255f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"46d436d4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1665528\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"633cd0e8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"173dc662\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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}],\"isInner\":true},{\"id\":\"7a8fd898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ea8dda7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6edd6d35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2c6ebc21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"166d4eb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5bc0ba8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a1733d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"1a3c8af6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"3c58c5cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"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\":\"edf1686\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_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\":\"33968af5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4129d66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":\"696a9cbe\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"637ea4e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"7bca4296\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"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\":\"2ae3409e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"d68515c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"6f8fd98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"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\":\"6e67cdb5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"11086637\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"749a1c8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"22481d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"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\":\"665189ad\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"10976bf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"77c75d3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"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\":\"3ed3fa22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"64a349c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2469fb2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"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\":\"1273b07\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1d669bf1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"7dff7203\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"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}],\"isInner\":false},{\"id\":\"63dec4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"261e3e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"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\":\"4e835b60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_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\":\"f62c27f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"46e51909\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"5b8a04a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"758e0142\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"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\":\"6129236b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"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\":\"1de62921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c22cae1\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"79797347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39670296\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"194fbb7a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"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\":\"1e6432f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab49120\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"7390dc9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43a1ab75\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"18ba70f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"6d3c8bff\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"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\":\"6a89e12c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e7380\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3bc3dd39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7f4375df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a0d2071\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660c9517\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"27fc23c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_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\":\"5ea8f1d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f026a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a3366ba\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true},{\"id\":\"3675b550\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a1a155c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"7a9930b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1fe0cdb4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160e2eae\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b2dde2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"5096221e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"20c6df60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2be0cd54\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d7c73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"42b47f29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"3c09f7d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74009823\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"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\":\"16f13a57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"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\":\"6cc2a2e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"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\":\"27c7c337\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c97bfde\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6531abf0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"174cc6fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"40828fea\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8a9a88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66dfbab5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5d70ef80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"69e7b61c\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"694b533d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ba387bb\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"4c3a5adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4d619747\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"6c8f521b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"586d8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"b1f40ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"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\"},{\"id\":\"25e50a7d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7dbcafd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2541c8c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5e01c4a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7e694ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a04a56a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"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\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6802fb13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"4bbadf4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"427fe43b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"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\":\"3753e73e\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_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\":\"70c2d0de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"1d47f251\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"32a08fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"370b1391\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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\"},{\"id\":\"11a08ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"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\":\"244da4fb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_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\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c97715\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"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\":\"79cfb967\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e3575a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"10b53187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"784762c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fb63adb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38125cfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"468c6985\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_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\":\"1ce28a38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3ab18390\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c161d6\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"242327cf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"2e3a4a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":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\":\"784e69cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4b4495c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"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\":\"71ae59ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_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\":\"4d5ce66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"47bd9c08\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"45d35fc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"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\":\"2b870674\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"57415c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2252c903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"4d259f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6e38574a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"53d5f04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d423e6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"51829ed9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"612dc5dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4674b2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5533a464\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"8e48905\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"52db52f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3fd9f823\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1eac3a6c\",\"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\":\"5b49ea22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffb2fdd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49c35a03\",\"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\":\"11b5c1b3\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\",\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_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-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(649,141,'_elementor_edit_mode','builder'),(650,141,'_elementor_template_type','section'),(651,141,'_elementor_version','3.13.4'),(652,141,'_elementor_pro_version','3.13.2'),(653,141,'_wp_page_template','default'),(654,141,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(655,141,'_elementor_data','[{\"id\":\"54d6574\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1420d192\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79376876\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19671ef6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_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\":\"text-editor\"},{\"id\":\"41b8149\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"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\":\"15f1b0e9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"3324cf97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":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\":\"172d9673\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"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}],\"isInner\":false},{\"id\":\"35106caf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64653b75\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a265555\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"6b7af137\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19803b14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"1e919f62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"2c00177d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5d6b1e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b4f3c4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"140cf0c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24d7383f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7dccb057\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"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\":\"73d96226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d41441d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3726854\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"19b2e097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2ba9b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"b981c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"512d3d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bfcdfe9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"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\":\"7c6f8224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"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\":\"13e721e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"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\":\"13b32660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1c9e384f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6258e7be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"4a3eba1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"2f899aba\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"307f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6e084561\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"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\":\"2b7832cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"61c89825\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"656a9ce5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"580013c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"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\":\"6204255f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"46d436d4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1665528\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"633cd0e8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"173dc662\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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}],\"isInner\":true},{\"id\":\"7a8fd898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ea8dda7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6edd6d35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2c6ebc21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"166d4eb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5bc0ba8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a1733d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"1a3c8af6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"3c58c5cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"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\":\"edf1686\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_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\":\"33968af5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4129d66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":\"696a9cbe\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"637ea4e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"7bca4296\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"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\":\"2ae3409e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"d68515c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"6f8fd98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"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\":\"6e67cdb5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"11086637\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"749a1c8d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"22481d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"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\":\"665189ad\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"10976bf9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"77c75d3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"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\":\"3ed3fa22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"64a349c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2469fb2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"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\":\"1273b07\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1d669bf1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"7dff7203\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"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}],\"isInner\":false},{\"id\":\"63dec4a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"261e3e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"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\":\"4e835b60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_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\":\"f62c27f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"46e51909\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"5b8a04a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"758e0142\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"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\":\"6129236b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"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\":\"1de62921\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c22cae1\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"79797347\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39670296\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"194fbb7a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"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\":\"1e6432f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ab49120\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"7390dc9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43a1ab75\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"18ba70f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"6d3c8bff\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"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\":\"6a89e12c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e7380\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3bc3dd39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7f4375df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a0d2071\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660c9517\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"27fc23c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_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\":\"5ea8f1d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f026a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a3366ba\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true},{\"id\":\"3675b550\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a1a155c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"7a9930b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1fe0cdb4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"160e2eae\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b2dde2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"5096221e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"20c6df60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2be0cd54\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d7c73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"42b47f29\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"3c09f7d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74009823\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"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\":\"16f13a57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"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\":\"6cc2a2e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"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\":\"27c7c337\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c97bfde\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6531abf0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"174cc6fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"40828fea\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8a9a88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66dfbab5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5d70ef80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"69e7b61c\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"694b533d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ba387bb\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"4c3a5adf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4d619747\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"6c8f521b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"586d8b3d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"b1f40ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"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\"},{\"id\":\"25e50a7d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7dbcafd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2541c8c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"5e01c4a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"7e694ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a04a56a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"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\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6802fb13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false},{\"id\":\"4bbadf4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"427fe43b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"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\":\"3753e73e\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_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\":\"70c2d0de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"1d47f251\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"32a08fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"370b1391\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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\"},{\"id\":\"11a08ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"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\":\"244da4fb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_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\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c97715\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"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\":\"79cfb967\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e3575a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"10b53187\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"784762c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fb63adb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38125cfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"468c6985\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_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\":\"1ce28a38\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3ab18390\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c161d6\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"242327cf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"2e3a4a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":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\":\"784e69cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4b4495c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"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\":\"71ae59ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_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\":\"4d5ce66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"47bd9c08\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"45d35fc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"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\":\"2b870674\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"57415c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2252c903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"4d259f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"6e38574a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"53d5f04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d423e6f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"51829ed9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"612dc5dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4674b2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5533a464\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"8e48905\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"52db52f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3fd9f823\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1eac3a6c\",\"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\":\"5b49ea22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffb2fdd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49c35a03\",\"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\":\"11b5c1b3\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\",\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_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-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(656,139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(657,139,'envato_tk_source_kit','83'),(658,139,'envato_tk_source_index','3'),(659,142,'_elementor_edit_mode','builder'),(660,142,'_elementor_template_type','section'),(661,142,'_elementor_version','3.13.4'),(662,142,'_elementor_pro_version','3.13.2'),(663,143,'_elementor_edit_mode','builder'),(664,143,'_elementor_template_type','section'),(665,143,'_elementor_version','3.13.4'),(666,143,'_elementor_pro_version','3.13.2'),(667,142,'_wp_page_template','elementor_canvas'),(668,142,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(669,142,'_elementor_data','[{\"id\":\"46d1ee67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b1d392a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35d34426\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"6ab72bb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b01edfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"626204fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"430633db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"64f87227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70e7a905\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1d7a2020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"278c8a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4ff85c4f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"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\":\"4030b854\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16b158fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fbe0752\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"4d3a46e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6d8541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"7185af5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"637bbfe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(670,144,'_elementor_edit_mode','builder'),(671,144,'_elementor_template_type','section'),(672,144,'_elementor_version','3.13.4'),(673,144,'_elementor_pro_version','3.13.2'),(674,144,'_wp_page_template','default'),(675,144,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(676,144,'_elementor_data','[{\"id\":\"46d1ee67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b1d392a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35d34426\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"6ab72bb8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b01edfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"626204fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"430633db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"64f87227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70e7a905\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"1d7a2020\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"278c8a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4ff85c4f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"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\":\"4030b854\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"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\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16b158fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fbe0752\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"4d3a46e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6d8541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"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\":\"text-editor\"},{\"id\":\"7185af5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"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\":\"image\"},{\"id\":\"637bbfe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"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\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(677,142,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(678,142,'envato_tk_source_kit','83'),(679,142,'envato_tk_source_index','15'),(680,145,'_elementor_edit_mode','builder'),(681,145,'_elementor_template_type','section'),(682,145,'_elementor_version','3.13.4'),(683,145,'_elementor_pro_version','3.13.2'),(684,146,'_elementor_edit_mode','builder'),(685,146,'_elementor_template_type','section'),(686,146,'_elementor_version','3.13.4'),(687,146,'_elementor_pro_version','3.13.2'),(688,145,'_wp_page_template','elementor_canvas'),(689,145,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(690,145,'_elementor_data','[{\"id\":\"2e40c4a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"161fdd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"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\":\"654fe64c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"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\":\"329d118\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2dd911ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2153ef0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"35bc8f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"41c3e477\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1ec39c36\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"479eff42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"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\":\"5e301157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"323ea569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2846c08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eb6d1b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"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\":\"2d0b1ce2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"263d6597\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"56013a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc705f0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"26f173ea\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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}],\"isInner\":true},{\"id\":\"4b2f559d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f1cf52f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d03a3e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4bc99313\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3452333f\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f156644\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23c20bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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}]'),(691,147,'_elementor_edit_mode','builder'),(692,147,'_elementor_template_type','section'),(693,147,'_elementor_version','3.13.4'),(694,147,'_elementor_pro_version','3.13.2'),(695,147,'_wp_page_template','default'),(696,147,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(697,147,'_elementor_data','[{\"id\":\"2e40c4a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"161fdd46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"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\":\"654fe64c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"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\":\"329d118\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2dd911ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2153ef0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"35bc8f76\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"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\":\"41c3e477\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1ec39c36\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"479eff42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"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\":\"5e301157\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"323ea569\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"2846c08\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eb6d1b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"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\":\"2d0b1ce2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"263d6597\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"56013a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dc705f0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"26f173ea\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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}],\"isInner\":true},{\"id\":\"4b2f559d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f1cf52f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d03a3e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4bc99313\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3452333f\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f156644\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23c20bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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}]'),(698,145,'_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\";}}'),(699,145,'envato_tk_source_kit','83'),(700,145,'envato_tk_source_index','16'),(701,148,'_elementor_edit_mode','builder'),(702,148,'_elementor_template_type','section'),(703,148,'_elementor_version','3.13.4'),(704,148,'_elementor_pro_version','3.13.2'),(705,149,'_elementor_edit_mode','builder'),(706,149,'_elementor_template_type','section'),(707,149,'_elementor_version','3.13.4'),(708,149,'_elementor_pro_version','3.13.2'),(709,148,'_wp_page_template','elementor_canvas'),(710,148,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(711,148,'_elementor_data','[{\"id\":\"56a14287\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"63aeaeb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"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\":\"33da106\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_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\":\"5d6edca0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63956a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":\"3d7693c3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"19111beb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"7e6a41e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"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\":\"1dd7a816\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2174925f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2e136141\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"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\":\"77b7e2f5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"7f46ac78\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"6c3a21d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"55663d2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"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\":\"6f617298\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"226977c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"fddcdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"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\":\"1fa67ee2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5f680b2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2734c340\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"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\":\"47da42ba\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"595bca40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"649c66c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"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}],\"isInner\":false}]'),(712,150,'_elementor_edit_mode','builder'),(713,150,'_elementor_template_type','section'),(714,150,'_elementor_version','3.13.4'),(715,150,'_elementor_pro_version','3.13.2'),(716,150,'_wp_page_template','default'),(717,150,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(718,150,'_elementor_data','[{\"id\":\"56a14287\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"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\":\"63aeaeb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"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\":\"33da106\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_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\":\"5d6edca0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63956a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":\"3d7693c3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"19111beb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"7e6a41e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"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\":\"1dd7a816\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2174925f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2e136141\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"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\":\"77b7e2f5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"7f46ac78\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"6c3a21d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"55663d2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"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\":\"6f617298\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"226977c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"fddcdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"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\":\"1fa67ee2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5f680b2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true},{\"id\":\"2734c340\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"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\":\"47da42ba\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"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},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"595bca40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"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\":true}],\"isInner\":true},{\"id\":\"649c66c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"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}],\"isInner\":false}]'),(719,148,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{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\";}}'),(720,148,'envato_tk_source_kit','83'),(721,148,'envato_tk_source_index','17'),(722,151,'_elementor_edit_mode','builder'),(723,151,'_elementor_template_type','section'),(724,151,'_elementor_version','3.13.4'),(725,151,'_elementor_pro_version','3.13.2'),(726,152,'_elementor_edit_mode','builder'),(727,152,'_elementor_template_type','section'),(728,152,'_elementor_version','3.13.4'),(729,152,'_elementor_pro_version','3.13.2'),(730,151,'_wp_page_template','elementor_canvas'),(731,151,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(732,151,'_elementor_data','[{\"id\":\"340c8d5a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fe91923\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4263bc4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3967c5ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_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\":\"text-editor\"},{\"id\":\"4a2b7118\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"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\":\"8dd35b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"3796e025\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":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\":\"19630b70\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"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}],\"isInner\":false}]'),(733,153,'_elementor_edit_mode','builder'),(734,153,'_elementor_template_type','section'),(735,153,'_elementor_version','3.13.4'),(736,153,'_elementor_pro_version','3.13.2'),(737,153,'_wp_page_template','default'),(738,153,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(739,153,'_elementor_data','[{\"id\":\"340c8d5a\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fe91923\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4263bc4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"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\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3967c5ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_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\":\"text-editor\"},{\"id\":\"4a2b7118\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"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\":\"8dd35b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"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\":\"3796e025\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":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\":\"19630b70\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"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}],\"isInner\":false}]'),(740,151,'_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\";}}'),(741,151,'envato_tk_source_kit','83'),(742,151,'envato_tk_source_index','13'),(743,154,'_elementor_edit_mode','builder'),(744,154,'_elementor_template_type','section'),(745,154,'_elementor_version','3.13.4'),(746,154,'_elementor_pro_version','3.13.2'),(747,155,'_elementor_edit_mode','builder'),(748,155,'_elementor_template_type','section'),(749,155,'_elementor_version','3.13.4'),(750,155,'_elementor_pro_version','3.13.2'),(751,154,'_wp_page_template','elementor_canvas'),(752,154,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(753,154,'_elementor_data','[{\"id\":\"a886745\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29d75016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"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\":\"68617166\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_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\":\"5f1c5cf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"539cf771\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"684c2d4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"41a13a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"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\":\"59c9adb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"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\":\"5c2cdc03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38362dc6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"7fe0c90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f9864a4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"5fd1e45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"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\":\"51414a45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a00de6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"57b5daee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2716dad3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"2d5e544f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}]'),(754,156,'_elementor_edit_mode','builder'),(755,156,'_elementor_template_type','section'),(756,156,'_elementor_version','3.13.4'),(757,156,'_elementor_pro_version','3.13.2'),(758,156,'_wp_page_template','default'),(759,156,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(760,156,'_elementor_data','[{\"id\":\"a886745\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29d75016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"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\":\"68617166\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_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\":\"5f1c5cf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"539cf771\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"684c2d4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"41a13a5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"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\":\"59c9adb4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"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\":\"5c2cdc03\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38362dc6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"7fe0c90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f9864a4\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"5fd1e45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"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\":\"51414a45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a00de6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true},{\"id\":\"57b5daee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2716dad3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_icons\":{\"value\":\"fab fa-amazon\",\"library\":\"fa-brands\"},\"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\":true}],\"isInner\":true},{\"id\":\"2d5e544f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}]'),(761,154,'_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\";}}'),(762,154,'envato_tk_source_kit','83'),(763,154,'envato_tk_source_index','18'),(764,157,'_elementor_edit_mode','builder'),(765,157,'_elementor_template_type','section'),(766,157,'_elementor_version','3.13.4'),(767,157,'_elementor_pro_version','3.13.2'),(768,158,'_elementor_edit_mode','builder'),(769,158,'_elementor_template_type','section'),(770,159,'_wp_attached_file','2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg'),(771,159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:550;s:4:\"file\";s:69:\"2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\";s:8:\"filesize\";i:96067;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12947;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK-1024x531.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80429;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7775;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK-768x398.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51724;}}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:{}}}'),(772,159,'_elementor_source_image_hash','ba84d109496e88767704b5e913e343ab92250b16'),(773,160,'_elementor_edit_mode','builder'),(774,160,'_elementor_template_type','section'),(775,160,'_elementor_version','3.13.4'),(776,160,'_elementor_pro_version','3.13.2'),(777,157,'_wp_page_template','elementor_canvas'),(778,157,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(779,157,'_elementor_data','[{\"id\":\"53f14327\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"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\":\"53f8e818\",\"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\":\"7c49ec6c\",\"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\":\"4d057380\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"12a4d7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c01f925\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"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\":\"8d15eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"5b84f573\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1809a4d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"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\":\"630e9b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(780,161,'_elementor_edit_mode','builder'),(781,161,'_elementor_template_type','section'),(782,161,'_elementor_version','3.13.4'),(783,161,'_elementor_pro_version','3.13.2'),(784,161,'_wp_page_template','default'),(785,161,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(786,161,'_elementor_data','[{\"id\":\"53f14327\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"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\":\"53f8e818\",\"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\":\"7c49ec6c\",\"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\":\"4d057380\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"12a4d7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c01f925\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"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\":\"8d15eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"5b84f573\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1809a4d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"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\":\"630e9b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(787,157,'_elementor_page_assets','a:0:{}'),(788,157,'envato_tk_source_kit','83'),(789,157,'envato_tk_source_index','26'),(790,158,'_elementor_version','3.13.4'),(791,158,'_elementor_pro_version','3.13.2'),(792,162,'_wp_attached_file','2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg'),(793,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:550;s:4:\"file\";s:70:\"2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\";s:8:\"filesize\";i:124741;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16397;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5-1024x531.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5-768x398.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69066;}}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:{}}}'),(794,163,'_elementor_edit_mode','builder'),(795,163,'_elementor_template_type','section'),(796,163,'_elementor_version','3.13.4'),(797,163,'_elementor_pro_version','3.13.2'),(798,158,'_wp_page_template','elementor_canvas'),(799,158,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(800,158,'_elementor_data','[{\"id\":\"192cc392\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"2d2eb704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64e781bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3782617\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"59c393f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1deb19c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69dc0cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"4ee64011\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_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\":\"2845fe2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"59aaa87f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20941a34\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(801,162,'_elementor_source_image_hash','9c3aacb2ec867e48c0a3571471fd36fb7919a66d'),(802,164,'_elementor_edit_mode','builder'),(803,164,'_elementor_template_type','section'),(804,164,'_elementor_version','3.13.4'),(805,164,'_elementor_pro_version','3.13.2'),(806,164,'_wp_page_template','default'),(807,164,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(808,164,'_elementor_data','[{\"id\":\"192cc392\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"2d2eb704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64e781bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3782617\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"59c393f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1deb19c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69dc0cda\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"4ee64011\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_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\":\"2845fe2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"59aaa87f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20941a34\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(809,158,'_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\";}}'),(810,158,'envato_tk_source_kit','83'),(811,158,'envato_tk_source_index','25'),(812,165,'_wp_attached_file','2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg'),(813,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:550;s:4:\"file\";s:70:\"2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\";s:8:\"filesize\";i:94981;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14403;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB-1024x531.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90059;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7595;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB-768x398.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58440;}}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:{}}}'),(814,165,'_elementor_source_image_hash','5ad2520aae1c3589f0356e2c14298f8a476ae8aa'),(815,166,'_wp_attached_file','2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg'),(816,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:550;s:4:\"file\";s:65:\"2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\";s:8:\"filesize\";i:88789;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13901;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU-1024x531.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8119;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU-768x398.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56468;}}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:{}}}'),(817,166,'_elementor_source_image_hash','17d09bc030cd6a87fdd938a480fe99e58662440a'),(818,167,'_wp_attached_file','2023/05/advice-of-doctor-GNDB7X7.jpg'),(819,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:550;s:4:\"file\";s:36:\"2023/05/advice-of-doctor-GNDB7X7.jpg\";s:8:\"filesize\";i:54333;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"advice-of-doctor-GNDB7X7-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10154;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"advice-of-doctor-GNDB7X7-1024x531.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"advice-of-doctor-GNDB7X7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5285;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"advice-of-doctor-GNDB7X7-768x398.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40032;}}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:{}}}'),(820,167,'_elementor_source_image_hash','31913d35311e13e154abb7477e93a4adda3e6380'),(821,168,'_elementor_edit_mode','builder'),(822,168,'_elementor_template_type','section'),(823,169,'_elementor_edit_mode','builder'),(824,169,'_elementor_template_type','section'),(825,168,'_elementor_version','3.13.4'),(826,168,'_elementor_pro_version','3.13.2'),(827,169,'_elementor_version','3.13.4'),(828,169,'_elementor_pro_version','3.13.2'),(829,170,'_elementor_edit_mode','builder'),(830,170,'_elementor_template_type','section'),(831,170,'_elementor_version','3.13.4'),(832,170,'_elementor_pro_version','3.13.2'),(833,168,'_wp_page_template','elementor_canvas'),(834,168,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(835,168,'_elementor_data','[{\"id\":\"2791068c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d080e7c\",\"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\":\"2a60a385\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Gallery\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a09d923\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bca8a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"4e34e36b\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"159\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\"},\"ekit_img_accordion_title\":\"The heart of your healthcare\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"bb350e5\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"162\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\"},\"ekit_img_accordion_title\":\"Investing in Quality Care\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"365c210\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"_id\":\"672d056\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"165\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\"},\"ekit_img_accordion_title\":\"Genius in Healthcare\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"166\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\"},\"ekit_img_accordion_title\":\"We\\u2019re in this together\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"e4e7834\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"167\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/advice-of-doctor-GNDB7X7.jpg\"},\"ekit_img_accordion_title\":\"Care close to home\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"79aba48\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_img_accordion_gutter\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_section_img_accordion_icon_title\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_img_accordion_title_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"custom\",\"ekit_img_accordion_title_typography_group_font_family\":\"Poppins\",\"ekit_img_accordion_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_font_weight\":\"600\",\"ekit_img_accordion_section_img_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"ekit_img_accordion_section_img_accordion_content_position\":\"flex-end\",\"ekit_img_accordion_section_img_accordion_icon_left_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"action_btn_bg\":\"#18B6E9\",\"action_btn_bg_hover\":\"#ED3B69\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"\",\"action_btn_bg\":\"globals\\/colors?id=secondary\",\"action_btn_bg_hover\":\"globals\\/colors?id=bd6d90d\"},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(836,171,'_elementor_edit_mode','builder'),(837,171,'_elementor_template_type','section'),(838,171,'_elementor_version','3.13.4'),(839,171,'_elementor_pro_version','3.13.2'),(840,171,'_wp_page_template','default'),(841,171,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (842,171,'_elementor_data','[{\"id\":\"2791068c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d080e7c\",\"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\":\"2a60a385\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Gallery\",\"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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a09d923\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bca8a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"4e34e36b\",\"elType\":\"widget\",\"settings\":{\"ekit_img_accordion_items\":[{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"159\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\"},\"ekit_img_accordion_title\":\"The heart of your healthcare\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"bb350e5\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"162\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\"},\"ekit_img_accordion_title\":\"Investing in Quality Care\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"365c210\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"_id\":\"672d056\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"165\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\"},\"ekit_img_accordion_title\":\"Genius in Healthcare\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"166\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\"},\"ekit_img_accordion_title\":\"We\\u2019re in this together\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"e4e7834\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}},{\"ekit_img_accordion_link\":\"#\",\"ekit_img_accordion_active\":\"\",\"ekit_img_accordion_bg\":{\"id\":\"167\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/advice-of-doctor-GNDB7X7.jpg\"},\"ekit_img_accordion_title\":\"Care close to home\",\"ekit_img_accordion_enable_button\":\"\",\"ekit_img_accordion_button_label\":\"Read More\",\"ekit_img_accordion_enable_pupup\":\"yes\",\"ekit_img_accordion_enable_project_link\":\"yes\",\"_id\":\"79aba48\",\"ekit_img_accordion_enable_icon\":\"\",\"ekit_img_accordion_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_img_accordion_title_icon_position\":\"left\",\"ekit_img_accordion_enable_wrap_link\":\"no\",\"ekit_img_accordion_wrap_link_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_pup_up_icons\":{\"value\":\"icon icon-plus\",\"library\":\"ekiticons\"},\"ekit_img_accordion_project_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_img_accordion_project_link_icons\":{\"value\":\"icon icon icon-link\",\"library\":\"ekiticons\"}}],\"ekit_img_accordion_min_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"ekit_img_accordion_gutter\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_background\":\"classic\",\"ekit_img_accordion_section_img_accordion_icon_title\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_img_accordion_title_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"custom\",\"ekit_img_accordion_title_typography_group_font_family\":\"Poppins\",\"ekit_img_accordion_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_font_weight\":\"600\",\"ekit_img_accordion_section_img_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"ekit_img_accordion_section_img_accordion_content_position\":\"flex-end\",\"ekit_img_accordion_section_img_accordion_icon_left_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"action_btn_bg\":\"#18B6E9\",\"action_btn_bg_hover\":\"#ED3B69\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"ekit_img_accordion_bg_active_color_color\":\"\",\"ekit_img_accordion_title_color\":\"\",\"ekit_img_accordion_title_typography_group_typography\":\"\",\"action_btn_bg\":\"globals\\/colors?id=secondary\",\"action_btn_bg_hover\":\"globals\\/colors?id=bd6d90d\"},\"ekit_img_accordion_min_height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"ekit_img_accordion_title_typography_group_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"ekit_img_accordion_bg_active_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_bg_active_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_bg_active_color_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_color_group_slideshow_gallery\":[],\"ekit_img_accordion_btn_bg_hover_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_img_accordion_btn_bg_hover_color_group_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(843,168,'_elementor_page_assets','a:0:{}'),(844,168,'envato_tk_source_kit','83'),(845,168,'envato_tk_source_index','24'),(846,172,'_elementor_edit_mode','builder'),(847,172,'_elementor_template_type','section'),(848,172,'_elementor_version','3.13.4'),(849,172,'_elementor_pro_version','3.13.2'),(850,169,'_wp_page_template','elementor_canvas'),(851,169,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(852,169,'_elementor_data','[{\"id\":\"6a23e298\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3893c4dc\",\"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\":\"3e56f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24ac18dc\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1575a0eb\",\"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\":\"57133121\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\",\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_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-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(853,173,'_elementor_edit_mode','builder'),(854,173,'_elementor_template_type','section'),(855,173,'_elementor_version','3.13.4'),(856,173,'_elementor_pro_version','3.13.2'),(857,173,'_wp_page_template','default'),(858,173,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(859,173,'_elementor_data','[{\"id\":\"6a23e298\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3893c4dc\",\"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\":\"3e56f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_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\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24ac18dc\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1575a0eb\",\"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\":\"57133121\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\",\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_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-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(860,169,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(861,169,'envato_tk_source_kit','83'),(862,169,'envato_tk_source_index','23'),(863,174,'_elementor_edit_mode','builder'),(864,174,'_elementor_template_type','section'),(865,175,'_elementor_edit_mode','builder'),(866,175,'_elementor_template_type','section'),(867,174,'_elementor_version','3.13.4'),(868,174,'_elementor_pro_version','3.13.2'),(869,175,'_elementor_version','3.13.4'),(870,175,'_elementor_pro_version','3.13.2'),(871,176,'_elementor_edit_mode','builder'),(872,176,'_elementor_template_type','section'),(873,177,'_elementor_edit_mode','builder'),(874,177,'_elementor_template_type','section'),(875,177,'_elementor_version','3.13.4'),(876,177,'_elementor_pro_version','3.13.2'),(877,174,'_wp_page_template','elementor_canvas'),(878,174,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(879,174,'_elementor_data','[{\"id\":\"2791fee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e1d1eae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"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\":\"42209414\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_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\":\"47c2e923\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"77483fe0\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"70832274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"5ecce1a6\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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\"},{\"id\":\"e8bda96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"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\":\"2c8bf220\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_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\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(880,178,'_elementor_edit_mode','builder'),(881,178,'_elementor_template_type','section'),(882,178,'_elementor_version','3.13.4'),(883,178,'_elementor_pro_version','3.13.2'),(884,178,'_wp_page_template','default'),(885,178,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(886,178,'_elementor_data','[{\"id\":\"2791fee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e1d1eae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"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\":\"42209414\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_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\":\"47c2e923\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"77483fe0\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"70832274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"5ecce1a6\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"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_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"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\"},{\"id\":\"e8bda96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"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\":\"2c8bf220\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_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\":\"icon\"}],\"isInner\":false}],\"isInner\":false}]'),(887,174,'_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\";}}'),(888,174,'envato_tk_source_kit','83'),(889,174,'envato_tk_source_index','21'),(890,179,'_elementor_edit_mode','builder'),(891,179,'_elementor_template_type','section'),(892,179,'_elementor_version','3.13.4'),(893,179,'_elementor_pro_version','3.13.2'),(894,175,'_wp_page_template','elementor_canvas'),(895,175,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(896,175,'_elementor_data','[{\"id\":\"521eaf9c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6896a8fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":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\":\"4605956\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5aea3296\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"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\":\"4e02e29e\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_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\":\"72812af7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"3e316fd5\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"1aed6c9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"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\":\"37c5c6af\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"2c1d3856\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20d04846\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"6619ad7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"62a5cfdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4b3458ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c859bbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"114f9b46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"151b8ce4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f635211\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35622a36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"1553ac40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"169a65e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}]'),(897,180,'_elementor_edit_mode','builder'),(898,180,'_elementor_template_type','section'),(899,180,'_elementor_version','3.13.4'),(900,180,'_elementor_pro_version','3.13.2'),(901,180,'_wp_page_template','default'),(902,180,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(903,180,'_elementor_data','[{\"id\":\"521eaf9c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6896a8fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":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\":\"4605956\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5aea3296\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"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\":\"4e02e29e\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_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\":\"72812af7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\"},{\"id\":\"3e316fd5\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"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\":\"1aed6c9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"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\":\"37c5c6af\",\"elType\":\"section\",\"settings\":{\"structure\":\"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\":[{\"id\":\"2c1d3856\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20d04846\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"6619ad7a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"62a5cfdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4b3458ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c859bbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"114f9b46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"151b8ce4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"3f635211\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35622a36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"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\"},{\"id\":\"1553ac40\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"169a65e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}]'),(904,175,'_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\";}}'),(905,175,'envato_tk_source_kit','83'),(906,175,'envato_tk_source_index','22'),(907,176,'_elementor_version','3.13.4'),(908,176,'_elementor_pro_version','3.13.2'),(909,181,'_elementor_edit_mode','builder'),(910,181,'_elementor_template_type','section'),(911,181,'_elementor_version','3.13.4'),(912,181,'_elementor_pro_version','3.13.2'),(913,176,'_wp_page_template','elementor_canvas'),(914,176,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(915,176,'_elementor_data','[{\"id\":\"436fe4df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"435fe6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"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\":\"1a6caa03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"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\":\"4dae8d18\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a74f6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f59930d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5d6863af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1922d329\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f066ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f5e2287\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"213a51fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4619a901\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2162444f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f20a390\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2db228fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"198593d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"1b92c572\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"19b821a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"418c96d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"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\"},{\"id\":\"4a892b09\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fda46fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"283d378f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"635e587a\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4fe5fdbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bfa030c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"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\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"409aeebc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}]'),(916,182,'_elementor_edit_mode','builder'),(917,182,'_elementor_template_type','section'),(918,182,'_elementor_version','3.13.4'),(919,182,'_elementor_pro_version','3.13.2'),(920,182,'_wp_page_template','default'),(921,182,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(922,182,'_elementor_data','[{\"id\":\"436fe4df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"435fe6f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"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\":\"1a6caa03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"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\":\"4dae8d18\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a74f6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f59930d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"5d6863af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"1922d329\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f066ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f5e2287\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"213a51fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4619a901\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2162444f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f20a390\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"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\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2db228fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"198593d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"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\":\"1b92c572\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"19b821a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"418c96d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"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\"},{\"id\":\"4a892b09\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fda46fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"283d378f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"635e587a\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"4fe5fdbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2bfa030c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"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\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"409aeebc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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}],\"isInner\":false}]'),(923,176,'_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\";}}'),(924,176,'envato_tk_source_kit','83'),(925,176,'envato_tk_source_index','20'),(927,154,'_edit_lock','1685435685:1'),(928,154,'ekit_post_views_count','2'),(929,183,'_elementor_edit_mode','builder'),(930,183,'_elementor_template_type','section'),(931,183,'_elementor_version','3.13.4'),(932,183,'_elementor_pro_version','3.13.2'),(933,184,'_elementor_edit_mode','builder'),(934,184,'_elementor_template_type','section'),(935,184,'_elementor_version','3.13.4'),(936,184,'_elementor_pro_version','3.13.2'),(937,183,'_wp_page_template','elementor_canvas'),(938,183,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(939,183,'_elementor_data','[{\"id\":\"31b3ce2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"7511b088\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"434882ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"662d134d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"284f568\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8372ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77402228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"5e2bebc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_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\":\"3738e4ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c709edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66907c1e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true},{\"id\":\"45c1bff1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58764438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"24fe8b6d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"32affdd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34468b19\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f5e5ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"4fa53c01\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"533f617f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6f12db34\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a559d4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"3dbad5c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2f4b163b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(940,185,'_elementor_edit_mode','builder'),(941,185,'_elementor_template_type','section'),(942,185,'_elementor_version','3.13.4'),(943,185,'_elementor_pro_version','3.13.2'),(944,185,'_wp_page_template','default'),(945,185,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(946,185,'_elementor_data','[{\"id\":\"31b3ce2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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\":\"7511b088\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"434882ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"662d134d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_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\":\"284f568\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8372ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77402228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_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\":\"5e2bebc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_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\":\"3738e4ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_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\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6c709edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66907c1e\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"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\":true}],\"isInner\":true},{\"id\":\"45c1bff1\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"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\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58764438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"24fe8b6d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"32affdd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34468b19\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f5e5ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"4fa53c01\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"533f617f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6f12db34\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a559d4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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\":\"3dbad5c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_global_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"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_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"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\":\"138\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.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\":\"2f4b163b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"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\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(947,183,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{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\";}}'),(948,183,'envato_tk_source_kit','83'),(949,183,'envato_tk_source_index','19'),(950,186,'_elementor_edit_mode','builder'),(951,186,'_elementor_template_type','section'),(952,186,'_elementor_version','3.13.4'),(953,186,'_elementor_pro_version','3.13.2'),(954,187,'_elementor_edit_mode','builder'),(955,187,'_elementor_template_type','section'),(956,187,'_elementor_version','3.13.4'),(957,187,'_elementor_pro_version','3.13.2'),(958,186,'_wp_page_template','elementor_canvas'),(959,186,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(960,186,'_elementor_data','[{\"id\":\"4880b6ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"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\":\"502b3293\",\"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\":\"7054dc2a\",\"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\":\"59a8b738\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"a69fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"51eae8c0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"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\":\"3739e653\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"40747201\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"68046ee2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"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\":\"4c193fa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(961,188,'_elementor_edit_mode','builder'),(962,188,'_elementor_template_type','section'),(963,188,'_elementor_version','3.13.4'),(964,188,'_elementor_pro_version','3.13.2'),(965,188,'_wp_page_template','default'),(966,188,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(967,188,'_elementor_data','[{\"id\":\"4880b6ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":30,\"vertical\":30,\"blur\":80,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"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\":\"502b3293\",\"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\":\"7054dc2a\",\"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\":\"59a8b738\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"a69fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"51eae8c0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"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\":\"3739e653\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_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\":\"40747201\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"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\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"68046ee2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"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\":\"4c193fa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(968,186,'_elementor_page_assets','a:0:{}'),(969,186,'envato_tk_source_kit','83'),(970,186,'envato_tk_source_index','27'),(971,189,'_edit_last','1'),(972,189,'_wp_page_template','elementor_canvas'),(973,189,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(974,189,'ehf_target_exclude_locations','a:0:{}'),(975,189,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(976,189,'ehf_template_type','type_header'),(977,189,'_edit_lock','1685436581:1'),(978,189,'_elementor_edit_mode','builder'),(979,189,'_elementor_template_type','wp-post'),(980,189,'_elementor_version','3.13.4'),(981,189,'_elementor_pro_version','3.13.2'),(982,189,'ekit_post_views_count','3'),(991,192,'_wp_page_template','default'),(992,192,'_elementor_edit_mode','builder'),(993,192,'_elementor_template_type','wp-post'),(994,192,'_elementor_version','3.13.4'),(995,192,'_elementor_pro_version','3.13.2'),(996,193,'_wp_page_template','default'),(997,193,'_elementor_edit_mode','builder'),(998,193,'_elementor_template_type','wp-post'),(999,193,'_elementor_version','3.13.4'),(1000,193,'_elementor_pro_version','3.13.2'),(1001,189,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1002,189,'_elementor_data','[{\"id\":\"623047b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\"},\"elements\":[{\"id\":\"70a15a89\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"69240916\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c9a07a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"43cf4f02\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"5fd1d872\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1003,194,'_wp_page_template','elementor_canvas'),(1004,194,'_elementor_edit_mode','builder'),(1005,194,'_elementor_template_type','wp-post'),(1006,194,'_elementor_version','3.13.4'),(1007,194,'_elementor_pro_version','3.13.2'),(1008,194,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1009,194,'_elementor_data','[{\"id\":\"7c7f500f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"32168265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"69d90dcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f166c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069fddd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"788305d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"68cb90ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"478ac934\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2314d63f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2bd2d16e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"1c89ca2a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2df023ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b01289f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bf16917\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df17113\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d460d7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5bc68596\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2fc76cf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d9eb6fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669920b5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6918d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60737fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"49049c74\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"41af274c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71338d70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5472b222\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47a37ca0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5283d1af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18dd1a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"265b963d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f571a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5acbd279\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4eeabb25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"682e5d75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71c51931\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34c05c5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"33a10d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0a5ab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f2eecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3fccf75d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"2df926c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c53f933\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"675831a0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"21150af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"545d6cbd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"44ef9ab2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"522356f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7baca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"6b656144\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"781b2df6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"526a2fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1f82e3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"3425d703\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f79fc11\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d9e7f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6148e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"742e2c73\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6c00b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22d97e73\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1622d3b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7cb70f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"580bdebc\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"45eb4085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fd11051\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6491a0b4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"4b2dcbd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14f964ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"74782845\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"606fff8e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6b64a7a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"630514c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66b840d5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6e7c5316\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3ba00d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d6061a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"3a8e425e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43a7542d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41a3fe2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"157b88d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7630a8f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e3be885\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ca78b23\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"762f7a73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2726be8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cc3b685\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47a73b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6d9a18ba\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"382199f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"5949da40\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"28ef9a33\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f8f42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"7172a79c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"b408d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"558c644\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3222a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4212a4d7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19204865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"42abe217\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df6f588\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e5d21d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"3b9f64bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49ad3b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1df3ed19\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4642cd20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c42f6fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"109cc4b4\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e40f03c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"26ce32cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f066652\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aa5ba69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3224b6da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"75c865ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21a60d4e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5a5c69df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c154101\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"513fe9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25c52518\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7ea8033f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51e0f79f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74755bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ac6ff6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbdf6ff\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"798e9995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d393ea4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1ed864cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"470296f6\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"54a79f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"19ef9772\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7e9d399b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"166f4dc3\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6a51c139\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"1424edee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"52cb1252\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f6fbb69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"78b3d91c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"7455ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cb43ec5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"174d09bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"2b5dace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"61a23ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c40e967\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7fab81e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a953646\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1610f7f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5ca52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b9d6d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"463fdc88\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"479c2c8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"201e6add\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26c06b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"1e7eb9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"65378afc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46fe28c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7437e030\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75f6bdae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"5d3762d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ee17b49\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30525b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"2ba3ab6a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"891d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3059ba4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59244043\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30877451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"1b260f39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"272cc00a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce79279\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"12bf19f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"611cba4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a802fd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7819d8b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9ff225\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6d66509d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39413acf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"319b1207\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"b74e5ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6ad735\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3069c948\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"4fcf801f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c633d43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b0920f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3853472b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"1bc59956\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31dec32c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50aa4759\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd3263\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"53328dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"76e590ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e770a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"4535782a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b89a9b6\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(1010,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1019,196,'_wp_attached_file','2023/05/NMH-logo-5-02-1-1.png'),(1020,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6081;s:6:\"height\";i:2229;s:4:\"file\";s:29:\"2023/05/NMH-logo-5-02-1-1.png\";s:8:\"filesize\";i:114991;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"NMH-logo-5-02-1-1-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14668;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"NMH-logo-5-02-1-1-1024x375.png\";s:5:\"width\";i:1024;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59566;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"NMH-logo-5-02-1-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:7249;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"NMH-logo-5-02-1-1-768x282.png\";s:5:\"width\";i:768;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"NMH-logo-5-02-1-1-1536x563.png\";s:5:\"width\";i:1536;s:6:\"height\";i:563;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94025;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"NMH-logo-5-02-1-1-2048x751.png\";s:5:\"width\";i:2048;s:6:\"height\";i:751;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131271;}}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:{}}}'),(1021,197,'_wp_page_template','elementor_canvas'),(1022,197,'_elementor_edit_mode','builder'),(1023,197,'_elementor_template_type','wp-post'),(1024,197,'_elementor_version','3.13.4'),(1025,197,'_elementor_pro_version','3.13.2'),(1026,197,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1027,197,'_elementor_data','[{\"id\":\"7c7f500f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"32168265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"69d90dcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f166c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069fddd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"788305d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"68cb90ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"478ac934\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2314d63f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2bd2d16e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"1c89ca2a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2df023ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b01289f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bf16917\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df17113\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d460d7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5bc68596\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2fc76cf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d9eb6fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669920b5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6918d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60737fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"49049c74\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"41af274c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71338d70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5472b222\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47a37ca0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5283d1af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18dd1a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"265b963d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f571a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5acbd279\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4eeabb25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"682e5d75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71c51931\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34c05c5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"33a10d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0a5ab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f2eecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3fccf75d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"2df926c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c53f933\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"675831a0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"21150af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"545d6cbd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"44ef9ab2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"522356f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7baca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"6b656144\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"781b2df6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"526a2fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1f82e3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"3425d703\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f79fc11\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d9e7f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6148e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"742e2c73\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6c00b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22d97e73\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1622d3b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7cb70f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"580bdebc\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"45eb4085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fd11051\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6491a0b4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"4b2dcbd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14f964ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"74782845\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"606fff8e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6b64a7a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"630514c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66b840d5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6e7c5316\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3ba00d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d6061a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"3a8e425e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43a7542d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41a3fe2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"157b88d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7630a8f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e3be885\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ca78b23\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"762f7a73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2726be8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cc3b685\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47a73b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6d9a18ba\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"382199f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"5949da40\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"28ef9a33\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f8f42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"7172a79c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"b408d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"558c644\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3222a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4212a4d7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19204865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"42abe217\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df6f588\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e5d21d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"3b9f64bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49ad3b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1df3ed19\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4642cd20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c42f6fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"109cc4b4\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e40f03c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"26ce32cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f066652\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aa5ba69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3224b6da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"75c865ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21a60d4e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5a5c69df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c154101\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"513fe9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25c52518\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7ea8033f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51e0f79f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74755bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ac6ff6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbdf6ff\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"798e9995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d393ea4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1ed864cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"470296f6\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"54a79f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"19ef9772\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7e9d399b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"166f4dc3\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6a51c139\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"1424edee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"52cb1252\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f6fbb69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"78b3d91c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"7455ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cb43ec5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"174d09bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"2b5dace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"61a23ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c40e967\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7fab81e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a953646\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1610f7f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5ca52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b9d6d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"463fdc88\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"479c2c8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"201e6add\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26c06b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"1e7eb9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"65378afc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46fe28c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7437e030\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75f6bdae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"5d3762d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ee17b49\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30525b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"2ba3ab6a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"891d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3059ba4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59244043\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30877451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"1b260f39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"272cc00a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce79279\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"12bf19f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"611cba4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a802fd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7819d8b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9ff225\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6d66509d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39413acf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"319b1207\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"b74e5ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6ad735\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3069c948\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"4fcf801f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c633d43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b0920f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3853472b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"1bc59956\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31dec32c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50aa4759\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd3263\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"53328dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"76e590ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e770a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"4535782a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b89a9b6\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(1028,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(1029,198,'_wp_page_template','elementor_canvas'),(1030,198,'_elementor_edit_mode','builder'),(1031,198,'_elementor_template_type','wp-post'),(1032,198,'_elementor_version','3.13.4'),(1033,198,'_elementor_pro_version','3.13.2'),(1034,198,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1035,198,'_elementor_data','[{\"id\":\"7c7f500f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"32168265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"69d90dcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f166c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069fddd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"788305d6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"68cb90ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"478ac934\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2314d63f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2bd2d16e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"1c89ca2a\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2df023ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b01289f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bf16917\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df17113\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d460d7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5bc68596\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2fc76cf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d9eb6fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669920b5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6918d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60737fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"49049c74\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"41af274c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71338d70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5472b222\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47a37ca0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5283d1af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18dd1a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"265b963d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2f571a4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5acbd279\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4eeabb25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"682e5d75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71c51931\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34c05c5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"33a10d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c0a5ab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f2eecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3fccf75d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"2df926c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c53f933\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"675831a0\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"21150af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"545d6cbd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"44ef9ab2\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"hm hm-headphone\",\"library\":\"happy-icons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"522356f4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7baca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"6b656144\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"781b2df6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"526a2fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1f82e3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"3425d703\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f79fc11\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d9e7f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6148e62a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"742e2c73\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6c00b5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22d97e73\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1622d3b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7cb70f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"580bdebc\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"45eb4085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2fd11051\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6491a0b4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"4b2dcbd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14f964ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"74782845\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"606fff8e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6b64a7a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"630514c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66b840d5\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6e7c5316\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3ba00d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d6061a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"3a8e425e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43a7542d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41a3fe2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"157b88d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7630a8f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e3be885\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ca78b23\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"762f7a73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2726be8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cc3b685\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47a73b58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6d9a18ba\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"382199f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"5949da40\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"28ef9a33\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f8f42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"7172a79c\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"b408d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"558c644\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3222a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4212a4d7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"19204865\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"42abe217\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2df6f588\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4e5d21d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"3b9f64bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49ad3b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1df3ed19\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4642cd20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c42f6fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"109cc4b4\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e40f03c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"26ce32cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f066652\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aa5ba69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3224b6da\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"75c865ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21a60d4e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5a5c69df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c154101\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"513fe9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25c52518\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7ea8033f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51e0f79f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74755bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ac6ff6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbdf6ff\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"798e9995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d393ea4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"1ed864cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"470296f6\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"54a79f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"19ef9772\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7e9d399b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"166f4dc3\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6a51c139\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"1424edee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"52cb1252\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f6fbb69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"78b3d91c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"7455ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cb43ec5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"174d09bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"2b5dace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"61a23ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c40e967\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7fab81e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a953646\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1610f7f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5ca52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b9d6d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"463fdc88\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"479c2c8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"201e6add\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"26c06b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"1e7eb9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"65378afc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"46fe28c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7437e030\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75f6bdae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"5d3762d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ee17b49\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30525b3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"2ba3ab6a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"891d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3059ba4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59244043\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30877451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"1b260f39\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"272cc00a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce79279\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"12bf19f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"611cba4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a802fd8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7819d8b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9ff225\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6d66509d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39413acf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"319b1207\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"b74e5ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1b6ad735\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe4e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3069c948\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"4fcf801f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c633d43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b0920f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3853472b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"1bc59956\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31dec32c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50aa4759\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efd3263\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"53328dad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"76e590ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"495e770a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"4535782a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b89a9b6\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(1036,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(1037,199,'_wp_page_template','elementor_canvas'),(1038,199,'_elementor_edit_mode','builder'),(1039,199,'_elementor_template_type','wp-post'),(1040,199,'_elementor_version','3.13.4'),(1041,199,'_elementor_pro_version','3.13.2'),(1042,199,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1043,199,'_elementor_data','[{\"id\":\"623047b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\"},\"elements\":[{\"id\":\"70a15a89\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"69240916\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c9a07a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"43cf4f02\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"5fd1d872\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1044,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:73:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";}}'),(1045,200,'_edit_last','1'),(1046,200,'_edit_lock','1685436521:1'),(1047,200,'_wp_page_template','elementor_canvas'),(1048,200,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(1049,200,'ehf_target_exclude_locations','a:0:{}'),(1050,200,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(1051,200,'ehf_template_type','type_footer'),(1052,200,'_elementor_edit_mode','builder'),(1053,200,'_elementor_template_type','wp-post'),(1054,200,'_elementor_version','3.13.4'),(1055,200,'_elementor_pro_version','3.13.2'),(1057,200,'ekit_post_views_count','2'),(1068,203,'_wp_page_template','default'),(1069,203,'_elementor_edit_mode','builder'),(1070,203,'_elementor_template_type','wp-post'),(1071,203,'_elementor_version','3.13.4'),(1072,203,'_elementor_pro_version','3.13.2'),(1073,204,'_wp_page_template','default'),(1074,204,'_elementor_edit_mode','builder'),(1075,204,'_elementor_template_type','wp-post'),(1076,204,'_elementor_version','3.13.4'),(1077,204,'_elementor_pro_version','3.13.2'),(1078,200,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1079,200,'_elementor_data','[{\"id\":\"3483a271\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"562d663c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50,\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"68306cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"621c0694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66fe7aa1\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"56497b08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b44ab13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a3e9621\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"157caf47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56a8930e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b74eec4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d268013\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"19998ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d44766\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_color\":\"#771341\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4ccb9f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7551aea3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"15f384aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2780e929\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e34f7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f6d3332\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1004fc7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2cbe474c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1080,205,'_wp_page_template','elementor_canvas'),(1081,205,'_elementor_edit_mode','builder'),(1082,205,'_elementor_template_type','wp-post'),(1083,205,'_elementor_version','3.13.4'),(1084,205,'_elementor_pro_version','3.13.2'),(1085,205,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1086,205,'_elementor_data','[{\"id\":\"3483a271\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"562d663c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50,\"background_background\":\"slideshow\"},\"elements\":[{\"id\":\"68306cbe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"621c0694\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66fe7aa1\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"56497b08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b44ab13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a3e9621\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"157caf47\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"56a8930e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b74eec4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d268013\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"19998ae6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d44766\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_color\":\"#771341\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4ccb9f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7551aea3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"15f384aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2780e929\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e34f7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f6d3332\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1004fc7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2cbe474c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1087,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1088,206,'_edit_lock','1685452312:1'),(1089,206,'_elementor_edit_mode','builder'),(1090,206,'_elementor_template_type','wp-page'),(1091,206,'_elementor_version','3.13.4'),(1092,206,'_elementor_pro_version','3.13.2'),(1103,209,'_elementor_edit_mode','builder'),(1104,209,'_elementor_template_type','wp-page'),(1105,209,'_elementor_version','3.13.4'),(1106,209,'_elementor_pro_version','3.13.2'),(1107,210,'_elementor_edit_mode','builder'),(1108,210,'_elementor_template_type','wp-page'),(1109,210,'_elementor_version','3.13.4'),(1110,210,'_elementor_pro_version','3.13.2'),(1111,206,'_wp_page_template','elementor_canvas'),(1112,206,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1113,206,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_background_position_mobile\":\"bottom right\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df4bb8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":259,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\"},{\"id\":260,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\"},{\"id\":261,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.webp\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"12a0ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9cd3f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"002e685\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"993fd8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"466407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7513cf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1114,211,'_elementor_edit_mode','builder'),(1115,211,'_elementor_template_type','wp-page'),(1116,211,'_elementor_version','3.13.4'),(1117,211,'_elementor_pro_version','3.13.2'),(1118,211,'_wp_page_template','elementor_canvas'),(1119,211,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1120,211,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1121,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:85:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";i:82;s:12:\"e-animations\";i:83;s:12:\"e-animations\";i:84;s:12:\"e-animations\";}}'),(1130,213,'_elementor_edit_mode','builder'),(1131,213,'_elementor_template_type','wp-page'),(1132,213,'_elementor_version','3.13.4'),(1133,213,'_elementor_pro_version','3.13.2'),(1134,213,'_wp_page_template','elementor_canvas'),(1135,213,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1136,213,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1137,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1138,214,'_elementor_edit_mode','builder'),(1139,214,'_elementor_template_type','wp-page'),(1140,214,'_elementor_version','3.13.4'),(1141,214,'_elementor_pro_version','3.13.2'),(1142,214,'_wp_page_template','elementor_canvas'),(1143,214,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1144,214,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=9d83217\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1145,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1146,215,'_elementor_edit_mode','builder'),(1147,215,'_elementor_template_type','wp-page'),(1148,215,'_elementor_version','3.13.4'),(1149,215,'_elementor_pro_version','3.13.2'),(1150,215,'_wp_page_template','elementor_canvas'),(1151,215,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1152,215,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1153,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1164,217,'_elementor_edit_mode','builder'),(1165,217,'_elementor_template_type','wp-page'),(1166,217,'_elementor_version','3.13.4'),(1167,217,'_elementor_pro_version','3.13.2'),(1168,217,'_wp_page_template','elementor_canvas'),(1169,217,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1170,217,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1171,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1172,218,'_elementor_edit_mode','builder'),(1173,218,'_elementor_template_type','wp-page'),(1174,218,'_elementor_version','3.13.4'),(1175,218,'_elementor_pro_version','3.13.2'),(1176,218,'_wp_page_template','elementor_canvas'),(1177,218,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1178,218,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"},{\"id\":\"3c3fa604\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#4C4C4D\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 Mediq All rights reserved\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1179,218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1180,219,'_elementor_edit_mode','builder'),(1181,219,'_elementor_template_type','wp-page'),(1182,219,'_elementor_version','3.13.4'),(1183,219,'_elementor_pro_version','3.13.2'),(1184,219,'_wp_page_template','elementor_canvas'),(1185,219,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1186,219,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1187,219,'_elementor_page_assets','a:1:{s:6:\"styles\";a:82:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";}}'),(1189,220,'_elementor_edit_mode','builder'),(1190,220,'_elementor_template_type','wp-page'),(1191,220,'_elementor_version','3.13.4'),(1192,220,'_elementor_pro_version','3.13.2'),(1193,220,'_wp_page_template','elementor_canvas'),(1194,220,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1195,220,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1196,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1198,221,'_elementor_edit_mode','builder'),(1199,221,'_elementor_template_type','wp-page'),(1200,221,'_elementor_version','3.13.4'),(1201,221,'_elementor_pro_version','3.13.2'),(1202,221,'_wp_page_template','elementor_canvas'),(1203,221,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1204,221,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c6a23d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":489,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_end\":{\"size\":-272,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"size\":-9,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"size\":-14.300000000000001,\"unit\":\"px\"},\"_offset_y\":{\"size\":-160,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":143,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1205,221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1207,222,'_elementor_edit_mode','builder'),(1208,222,'_elementor_template_type','wp-page'),(1209,222,'_elementor_version','3.13.4'),(1210,222,'_elementor_pro_version','3.13.2'),(1211,222,'_wp_page_template','elementor_canvas'),(1212,222,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1213,222,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1214,222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1226,224,'_wp_attached_file','2023/05/50-years-copy-1.png'),(1227,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"2023/05/50-years-copy-1.png\";s:8:\"filesize\";i:90844;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"50-years-copy-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49443;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"50-years-copy-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:312775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"50-years-copy-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:17251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"50-years-copy-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197571;}}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:{}}}'),(1228,225,'_edit_lock','1685448054:1'),(1229,227,'_edit_lock','1685448149:1'),(1230,229,'_edit_lock','1685448177:1'),(1231,231,'_edit_lock','1685448198:1'),(1232,233,'_edit_lock','1685448216:1'),(1233,235,'_menu_item_type','post_type'),(1234,235,'_menu_item_menu_item_parent','0'),(1235,235,'_menu_item_object_id','206'),(1236,235,'_menu_item_object','page'),(1237,235,'_menu_item_target',''),(1238,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1239,235,'_menu_item_xfn',''),(1240,235,'_menu_item_url',''),(1242,236,'_menu_item_type','post_type'),(1243,236,'_menu_item_menu_item_parent','0'),(1244,236,'_menu_item_object_id','225'),(1245,236,'_menu_item_object','page'),(1246,236,'_menu_item_target',''),(1247,236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1248,236,'_menu_item_xfn',''),(1249,236,'_menu_item_url',''),(1251,237,'_menu_item_type','post_type'),(1252,237,'_menu_item_menu_item_parent','0'),(1253,237,'_menu_item_object_id','231'),(1254,237,'_menu_item_object','page'),(1255,237,'_menu_item_target',''),(1256,237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1257,237,'_menu_item_xfn',''),(1258,237,'_menu_item_url',''),(1260,238,'_menu_item_type','post_type'),(1261,238,'_menu_item_menu_item_parent','0'),(1262,238,'_menu_item_object_id','233'),(1263,238,'_menu_item_object','page'),(1264,238,'_menu_item_target',''),(1265,238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1266,238,'_menu_item_xfn',''),(1267,238,'_menu_item_url',''),(1269,239,'_menu_item_type','post_type'),(1270,239,'_menu_item_menu_item_parent','0'),(1271,239,'_menu_item_object_id','229'),(1272,239,'_menu_item_object','page'),(1273,239,'_menu_item_target',''),(1274,239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1275,239,'_menu_item_xfn',''),(1276,239,'_menu_item_url',''),(1278,240,'_menu_item_type','post_type'),(1279,240,'_menu_item_menu_item_parent','0'),(1280,240,'_menu_item_object_id','227'),(1281,240,'_menu_item_object','page'),(1282,240,'_menu_item_target',''),(1283,240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1284,240,'_menu_item_xfn',''),(1285,240,'_menu_item_url',''),(1287,241,'_elementor_edit_mode','builder'),(1288,241,'_elementor_template_type','wp-page'),(1289,241,'_elementor_version','3.13.4'),(1290,241,'_elementor_pro_version','3.13.2'),(1291,241,'_wp_page_template','elementor_canvas'),(1292,241,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1293,241,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1294,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1295,242,'_elementor_edit_mode','builder'),(1296,242,'_elementor_template_type','wp-page'),(1297,242,'_elementor_version','3.13.4'),(1298,242,'_elementor_pro_version','3.13.2'),(1299,242,'_wp_page_template','elementor_canvas'),(1300,242,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1301,242,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1302,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1303,243,'_elementor_edit_mode','builder'),(1304,243,'_elementor_template_type','wp-page'),(1305,243,'_elementor_version','3.13.4'),(1306,243,'_elementor_pro_version','3.13.2'),(1307,243,'_wp_page_template','elementor_canvas'),(1308,243,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1309,243,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1310,243,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1321,245,'_elementor_edit_mode','builder'),(1322,245,'_elementor_template_type','wp-page'),(1323,245,'_elementor_version','3.13.4'),(1324,245,'_elementor_pro_version','3.13.2'),(1325,245,'_wp_page_template','elementor_canvas'),(1326,245,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1327,245,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1328,245,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1329,246,'_elementor_edit_mode','builder'),(1330,246,'_elementor_template_type','wp-page'),(1331,246,'_elementor_version','3.13.4'),(1332,246,'_elementor_pro_version','3.13.2'),(1333,246,'_wp_page_template','elementor_canvas'),(1334,246,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1335,246,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"menu-1\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1336,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1337,247,'_elementor_edit_mode','builder'),(1338,247,'_elementor_template_type','wp-page'),(1339,247,'_elementor_version','3.13.4'),(1340,247,'_elementor_pro_version','3.13.2'),(1341,247,'_wp_page_template','elementor_canvas'),(1342,247,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1343,247,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#18B6E9\",\"elementskit_menu_close_background_color\":\"#18B6E9\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1344,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1353,249,'_elementor_edit_mode','builder'),(1354,249,'_elementor_template_type','wp-page'),(1355,249,'_elementor_version','3.13.4'),(1356,249,'_elementor_pro_version','3.13.2'),(1357,249,'_wp_page_template','elementor_canvas'),(1358,249,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1359,249,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#18B6E9\",\"elementskit_menu_close_background_color\":\"#18B6E9\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1360,249,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1361,250,'_elementor_edit_mode','builder'),(1362,250,'_elementor_template_type','wp-page'),(1363,250,'_elementor_version','3.13.4'),(1364,250,'_elementor_pro_version','3.13.2'),(1365,250,'_wp_page_template','elementor_canvas'),(1366,250,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1367,250,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=bd6d90d\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":\"88\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\"},\"elementskit_hamburger_icon\":{\"value\":\"icon icon-menu-9\",\"library\":\"ekiticons\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#18B6E9\",\"elementskit_menu_close_background_color\":\"#18B6E9\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1368,250,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1369,251,'_elementor_edit_mode','builder'),(1370,251,'_elementor_template_type','wp-page'),(1371,251,'_elementor_version','3.13.4'),(1372,251,'_elementor_pro_version','3.13.2'),(1373,251,'_wp_page_template','elementor_canvas'),(1374,251,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1375,251,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1376,251,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1387,253,'_elementor_edit_mode','builder'),(1388,253,'_elementor_template_type','wp-page'),(1389,253,'_elementor_version','3.13.4'),(1390,253,'_elementor_pro_version','3.13.2'),(1391,253,'_wp_page_template','elementor_canvas'),(1392,253,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1393,253,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1394,253,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1395,254,'_elementor_edit_mode','builder'),(1396,254,'_elementor_template_type','wp-page'),(1397,254,'_elementor_version','3.13.4'),(1398,254,'_elementor_pro_version','3.13.2'),(1399,254,'_wp_page_template','elementor_canvas'),(1400,254,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1401,254,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Our Mediq Healthcare Clinic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appintments & Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"+88 (0) 123 456 789\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Clients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38951d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e626008\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"573c47fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent News of Mediq Healthcare\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cb01b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"22fd9b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4da6fc5d\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"author\",\"date\"],\"ekit_blog_posts_meta_author_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_btn_text\":\"Read More\",\"ekit_blog_posts_btn_icons\":{\"value\":\"fas fa-arrow-circle-right\",\"library\":\"fa-solid\"},\"ekit_blog_posts_btn_icon_align\":\"right\",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"ekit_blog_posts_feature_img_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_blog_posts_btn_bg_color_background\":\"classic\",\"ekit_blog_posts_btn_bg_color_color\":\"#02010100\",\"__globals__\":{\"ekit_blog_posts_btn_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_background_color\":\"globals\\/colors?id=546d500\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=5279dcb\",\"ekit_blog_posts_meta_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_btn_text_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_btn_hover_color\":\"globals\\/colors?id=bd6d90d\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_blog_posts_cats\":[\"7\",\"6\",\"5\"],\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"121 Kingt Melbourne VIC 3000, Australia\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@example.com\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"888-123-4587\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1402,254,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1403,255,'_elementor_edit_mode','builder'),(1404,255,'_elementor_template_type','wp-page'),(1405,255,'_elementor_version','3.13.4'),(1406,255,'_elementor_pro_version','3.13.2'),(1407,255,'_wp_page_template','elementor_canvas'),(1408,255,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1409,255,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1410,255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:81:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";}}'),(1411,84,'_edit_lock','1685451615:1'),(1412,256,'_wp_attached_file','2023/05/NMH-logo-5-02.png'),(1413,256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2211;s:6:\"height\";i:2229;s:4:\"file\";s:25:\"2023/05/NMH-logo-5-02.png\";s:8:\"filesize\";i:187871;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"NMH-logo-5-02-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17521;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-1016x1024.png\";s:5:\"width\";i:1016;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71129;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"NMH-logo-5-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8222;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"NMH-logo-5-02-768x774.png\";s:5:\"width\";i:768;s:6:\"height\";i:774;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52164;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-1524x1536.png\";s:5:\"width\";i:1524;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113662;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"NMH-logo-5-02-2031x2048.png\";s:5:\"width\";i:2031;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156883;}}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:{}}}'),(1414,257,'_elementor_edit_mode','builder'),(1415,257,'_elementor_template_type','kit'),(1416,257,'_elementor_version','3.13.4'),(1417,257,'_elementor_pro_version','3.13.2'),(1418,257,'_wp_page_template','default'),(1419,257,'_elementor_page_settings','a:92:{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:\"#000000\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#18B6E9\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#18B6E9\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"546d500\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"5279dcb\";s:5:\"title\";s:4:\"Grey\";s:5:\"color\";s:7:\"#8D8D8D\";}i:2;a:3:{s:3:\"_id\";s:7:\"bd6d90d\";s:5:\"title\";s:7:\"Special\";s:5:\"color\";s:7:\"#ED3B69\";}i:3;a:3:{s:3:\"_id\";s:7:\"9d83217\";s:5:\"title\";s:10:\"Light Blue\";s:5:\"color\";s:7:\"#EDF9FD\";}}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:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"700\";}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:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:8:{i:0;a:6:{s:3:\"_id\";s:7:\"db34ff8\";s:5:\"title\";s:4:\"Menu\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:1;a:8:{s:3:\"_id\";s:7:\"ef9ed13\";s:5:\"title\";s:12:\"Hero Content\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;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:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:3:\"_id\";s:7:\"3762adb\";s:5:\"title\";s:14:\"Icon box title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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\";}i:3;a:6:{s:3:\"_id\";s:7:\"a83836d\";s:5:\"title\";s:10:\"Small Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:\"400\";}i:4;a:6:{s:3:\"_id\";s:7:\"91a7101\";s:5:\"title\";s:11:\"Small title\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:\"500\";}i:5;a:7:{s:3:\"_id\";s:7:\"8ca81ae\";s:5:\"title\";s:16:\"Icon box title 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";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:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:6;a:6:{s:3:\"_id\";s:7:\"c4a50be\";s:5:\"title\";s:15:\"Fun Fact Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";}i:7;a:8:{s:3:\"_id\";s:7:\"3b8ae93\";s:5:\"title\";s:13:\"Icon Box Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Rubik\";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:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;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:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Rubik\";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:27:\"body_typography_font_weight\";s:3:\"400\";s:33:\"link_normal_typography_typography\";s:6:\"custom\";s:34:\"link_normal_typography_font_family\";s:5:\"Rubik\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:7:\"Poppins\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:9:\"site_name\";s:33:\"NMH - Heart &amp; Multispeciality\";s:16:\"site_description\";s:17:\"The Power to Heal\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:12:{s:10:\"body_color\";s:27:\"globals/colors?id=secondary\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:8:\"h1_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h2_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h3_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h4_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h5_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h6_color\";s:27:\"globals/colors?id=secondary\";s:17:\"button_text_color\";s:25:\"globals/colors?id=546d500\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=bd6d90d\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:7:\"Poppins\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:7:\"Poppins\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:7:\"Poppins\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"800\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:7:\"Poppins\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"700\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:7:\"Poppins\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}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:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"700\";s:10:\"body_color\";s:7:\"#18B6E9\";s:17:\"link_normal_color\";s:7:\"#18B6E9\";s:8:\"h1_color\";s:7:\"#18B6E9\";s:8:\"h2_color\";s:7:\"#18B6E9\";s:8:\"h3_color\";s:7:\"#18B6E9\";s:8:\"h4_color\";s:7:\"#18B6E9\";s:8:\"h5_color\";s:7:\"#18B6E9\";s:8:\"h6_color\";s:7:\"#18B6E9\";s:28:\"button_typography_typography\";s:6:\"custom\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";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:\"16\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"14\";s:4:\"left\";s:2:\"30\";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:10;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"h1_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;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:34:\"body_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.7;s:5:\"sizes\";a:0:{}}s:32:\"h2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:37:\"form_field_box_shadow_box_shadow_type\";s:3:\"yes\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:5;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:5:\"color\";s:18:\"rgba(0, 0, 0, 0.1)\";}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:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:18:\"form_field_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:0;}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:1;}}'),(1420,257,'_elementor_data','[]'),(1421,257,'_elementor_page_assets','a:0:{}'),(1436,259,'_wp_attached_file','2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp'),(1437,259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:733;s:6:\"height\";i:830;s:4:\"file\";s:78:\"2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\";s:8:\"filesize\";i:288630;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-265x300.webp\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3472;}}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:{}}}'),(1438,260,'_wp_attached_file','2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp'),(1439,260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:766;s:6:\"height\";i:830;s:4:\"file\";s:78:\"2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\";s:8:\"filesize\";i:410472;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-277x300.webp\";s:5:\"width\";i:277;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4480;}}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:{}}}'),(1440,261,'_wp_attached_file','2023/05/doctor-at-hospital-R69SC2W.webp'),(1441,261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:732;s:6:\"height\";i:830;s:4:\"file\";s:39:\"2023/05/doctor-at-hospital-R69SC2W.webp\";s:8:\"filesize\";i:324102;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"doctor-at-hospital-R69SC2W-265x300.webp\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"doctor-at-hospital-R69SC2W-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4036;}}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:{}}}'),(1442,262,'_elementor_edit_mode','builder'),(1443,262,'_elementor_template_type','wp-page'),(1444,262,'_elementor_version','3.13.4'),(1445,262,'_elementor_pro_version','3.13.2'),(1446,262,'_wp_page_template','elementor_canvas'),(1447,262,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1448,262,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1449,262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:79:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";}}'),(1450,263,'_elementor_edit_mode','builder'),(1451,263,'_elementor_template_type','wp-page'),(1452,263,'_elementor_version','3.13.4'),(1453,263,'_elementor_pro_version','3.13.2'),(1454,263,'_wp_page_template','elementor_canvas'),(1455,263,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1456,263,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1457,263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:79:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";}}'),(1458,264,'_elementor_edit_mode','builder'),(1459,264,'_elementor_template_type','wp-page'),(1460,264,'_elementor_version','3.13.4'),(1461,264,'_elementor_pro_version','3.13.2'),(1462,264,'_wp_page_template','elementor_canvas'),(1463,264,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1464,264,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_background_position_mobile\":\"bottom right\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df4bb8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":259,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\"},{\"id\":260,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\"},{\"id\":261,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.webp\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"12a0ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9cd3f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"002e685\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"993fd8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"466407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7513cf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1465,264,'_elementor_page_assets','a:1:{s:6:\"styles\";a:79:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";}}'),(1467,265,'_elementor_edit_mode','builder'),(1468,265,'_elementor_template_type','wp-page'),(1469,265,'_elementor_version','3.13.4'),(1470,265,'_elementor_pro_version','3.13.2'),(1471,265,'_wp_page_template','elementor_canvas'),(1472,265,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}');
INSERT INTO `wp_postmeta` VALUES (1473,265,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_background_position_mobile\":\"bottom right\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df4bb8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":259,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\"},{\"id\":260,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\"},{\"id\":261,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.webp\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"12a0ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9cd3f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"002e685\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"993fd8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"466407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7513cf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1474,265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:85:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";i:82;s:12:\"e-animations\";i:83;s:12:\"e-animations\";i:84;s:12:\"e-animations\";}}'),(1476,266,'_elementor_edit_mode','builder'),(1477,266,'_elementor_template_type','wp-page'),(1478,266,'_elementor_version','3.13.4'),(1479,266,'_elementor_pro_version','3.13.2'),(1480,266,'_wp_page_template','elementor_canvas'),(1481,266,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1482,266,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_background_position_mobile\":\"bottom right\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df4bb8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":259,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\"},{\"id\":260,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\"},{\"id\":261,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.webp\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"12a0ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9cd3f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"002e685\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"993fd8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"466407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7513cf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1483,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:85:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";i:82;s:12:\"e-animations\";i:83;s:12:\"e-animations\";i:84;s:12:\"e-animations\";}}'),(1485,267,'_elementor_edit_mode','builder'),(1486,267,'_elementor_template_type','wp-page'),(1487,267,'_elementor_version','3.13.4'),(1488,267,'_elementor_pro_version','3.13.2'),(1489,267,'_wp_page_template','elementor_canvas'),(1490,267,'_elementor_page_settings','a:1:{s:14:\"ha_grid_zindex\";s:4:\"1000\";}'),(1491,267,'_elementor_data','[{\"id\":\"78f5d2e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"slideInDown\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1707ed6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\"},\"elements\":[{\"id\":\"36316842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ff27aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":61.332000000000001,\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_mobile\":40,\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"2d8af74b\",\"elType\":\"widget\",\"settings\":{\"elementskit_submenu_container_width\":\"220px\",\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-right\",\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=db34ff8\",\"elementskit_panel_submenu_border_color\":\"\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=546d500\",\"elementskit_item_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_menu_active_text_color\":\"\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=bd6d90d\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_color\":\"\",\"elementskit_menu_close_background_color\":\"\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=546d500\",\"elementskit_menu_close_background_hover_color\":\"\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=546d500\"},\"_element_width\":\"auto\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Poppins\",\"elementskit_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_spacing\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"elementskit_menu_item_background_hover_background\":\"classic\",\"elementskit_menu_item_background_hover_color\":\"#02010100\",\"elementskit_nav_sub_menu_active_bg_color_background\":\"classic\",\"elementskit_nav_sub_menu_active_bg_color_color\":\"#02010100\",\"elementskit_menu_item_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sub_panel_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"elementskit_panel_submenu_border_border\":\"solid\",\"elementskit_panel_submenu_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_panel_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"elementskit_panel_box_shadow_box_shadow_type\":\"yes\",\"elementskit_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"elementskit_nav_menu_logo\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"elementskit_hamburger_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"8\",\"bottom\":\"7\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_border_radius_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"elementskit_menu_toggle_background_background\":\"classic\",\"elementskit_menu_toggle_border_border\":\"solid\",\"elementskit_menu_toggle_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"elementskit_menu_close_background_background\":\"classic\",\"elementskit_menu_close_border_border\":\"solid\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_mobile_menu_logo_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"wrapper_color_mobile_mobile\":\"#FFE6F1\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_color_hover\":\"#ED3B69\",\"elementskit_nav_menu_active_bg_color_background\":\"gradient\",\"elementskit_nav_menu_active_text_color\":\"#771341\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_item_text_color_hover\":\"#ED3B69\",\"elementskit_nav_sub_menu_active_text_color\":\"#18B6E9\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_color\":\"#771341\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#ED3B69\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_background_color\":\"#771341\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_color\":\"#ED3B69\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"35fdbf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"content_position\":\"center\",\"align\":\"flex-start\",\"_inline_size_mobile\":60,\"align_mobile\":\"flex-start\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e4ab46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":224,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/50-years-copy-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1e9c81\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},{\"id\":\"99\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg\"},{\"id\":\"100\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_background_position_mobile\":\"bottom right\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"22b15ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"5999f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf78588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":600,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ef9ed13\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ca93dda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"13e552f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35fa3e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7c3ace47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7df4bb8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"slideshow\",\"background_image\":{\"id\":\"98\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.jpg\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"fadeIn\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_position\":\"center right\",\"background_position_tablet\":\"center right\",\"background_position_mobile\":\"center center\",\"background_slideshow_gallery\":[{\"id\":259,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp\"},{\"id\":260,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp\"},{\"id\":261,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/doctor-at-hospital-R69SC2W.webp\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_ken_burns\":\"yes\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"12a0ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"_inline_size_tablet\":80,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9cd3f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exceptional Care Every Patient Every Day\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"002e685\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"_element_width\":\"auto\",\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"button_background_hover_color\":\"#ED3B69\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"993fd8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"\"},\"_animation\":\"rotateInUpRight\",\"_animation_delay\":900,\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#ED3B69\",\"button_background_hover_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"466407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"_inline_size_tablet\":20},\"elements\":[{\"id\":\"7513cf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dc1bbdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"135\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4f8b497\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_delay\":500},\"elements\":[{\"id\":\"a50a4dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-1.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"944f3f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Select Expert Doctor\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58e5e89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3efdeab6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5739d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14b47b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"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\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"94\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"2a3db3aa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"103\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-2.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_icon_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2dc82b3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Consultation\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c46b2d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"203cf9d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Know More\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"-45\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"48044b6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=secondary\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2888d859\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"2e8c49a4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"104\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-3.png\"},\"ekit_icon_box_title_text\":\"\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_box_shadow_normal_group_box_shadow_type\":\"yes\",\"ekit_icon_icon_box_shadow_normal_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=primary\"},\"ekit_icon_box_icon_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_icon_line_height_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_weight\":\"700\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"79db73a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Cure & Relief\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5655d091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora <\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10348e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_element_width\":\"inherit\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_offset_orientation_h\":\"end\",\"_offset_x_tablet\":{\"size\":36,\"unit\":\"px\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49933f48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_z_index\":2,\"_background_background\":\"classic\",\"_background_color\":\"#18B6E9\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=546d500\",\"typography_typography\":\"\",\"_background_color\":\"globals\\/colors?id=bd6d90d\"},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22b9e898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56179acd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"_inline_size_tablet\":40,\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7050e4f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/round-building-CGY4TZ5.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInLeft\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5527e353\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"106\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"flex-end\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6dc0fed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"107\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/experience_bg.png\"},\"image_size\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_z_index\":2,\"_animation\":\"pulse\",\"_animation_delay\":500,\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":-27,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-15,\"sizes\":[]},\"_offset_y_end_mobile\":{\"size\":-82,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"692bdc43\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"438160ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"slideInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_x_end\":{\"size\":133.5,\"unit\":\"px\"},\"_offset_orientation_v\":\"end\",\"_offset_y\":{\"size\":430,\"unit\":\"px\"},\"_offset_y_end\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"538129f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"45+\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"699a79a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years\",\"header_size\":\"h5\",\"align\":\"center\",\"_z_index\":3,\"_animation\":\"fadeIn\",\"_animation_delay\":600,\"_element_width\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x\":{\"unit\":\"px\",\"size\":114,\"sizes\":[]},\"_offset_x_end\":{\"size\":20,\"unit\":\"px\"},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"size\":35,\"unit\":\"px\"},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1f01d6aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"_inline_size_tablet\":60,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cea384f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Narinder Mohan Hospital\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"_animation_delay\":500,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"619d754f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e2a3d8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":600},\"elements\":[{\"id\":\"1af01b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cfb53a1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Qualified Doctors\",\"ekit_icon_box_description_text\":\"45 years of experience\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"b9c3b8\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-laptop-phone\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Online Consultation\",\"ekit_icon_box_description_text\":\"Book online appointment\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"44fc2e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d57bf35\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-magic-wand\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Instant Appointment\",\"ekit_icon_box_description_text\":\"With your specialist doctor\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6aca3a11\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-service\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"24 Hours Care Service\",\"ekit_icon_box_description_text\":\"With emergency care unit\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=546d500\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=3762adb\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=a83836d\",\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color\":\"globals\\/colors?id=5279dcb\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=5279dcb\"},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#8D8D8D\",\"ekit_icon_description_color_hover\":\"#8D8D8D\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d291b72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"665047a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"align_mobile\":\"center\",\"animation\":\"rotateInUpLeft\",\"animation_delay\":700},\"elements\":[{\"id\":\"3c64e423\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"109\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/sign.jpg\"},\"image_size\":\"full\",\"align\":\"left\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"356b39c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Saanaya Singh\",\"header_size\":\"h6\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95042c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"- CEO\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91a7101\",\"title_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c375ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"content_position\":\"center\",\"animation\":\"rotateInUpRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"65f55df0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align_mobile\":\"justify\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8bf90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"115\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_overlay_image\":{\"id\":\"110\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/light-blue-bg.jpg\"},\"background_overlay_repeat\":\"repeat-y\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4875fe6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color\":\"#F0FAFE\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c15e1a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Healthcare Services\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bff90ab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"14a23f2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"605af3ed\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"111\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\"},\"ekit_icon_box_title_text\":\"Kidney Transplant\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"5d139a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1acf9592\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"256f9ca\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"113\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\"},\"ekit_icon_box_title_text\":\"Pulmonology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"6f1f2796\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4922677b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19cb3573\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"115\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\"},\"ekit_icon_box_title_text\":\"Neurology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"46bfb1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13d45596\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2},\"elements\":[{\"id\":\"34bad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57e57c2f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"116\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\"},\"ekit_icon_box_title_text\":\"Blood Donation\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"121a55fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"713deb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c733e19\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"117\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\"},\"ekit_icon_box_title_text\":\"Dental Care\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"54fc7bd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"69ea290e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":500,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11cdebae\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\"},\"ekit_icon_box_title_text\":\"Ophthalmology\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_title_size\":\"h6\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"__globals__\":{\"ekit_icon_box_icon_secondary_color_normal\":\"\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":2,\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2408eb7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3624d2ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-48,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"370cf9ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"88176cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":42,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1553f920\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Appointments &amp; Prescriptions\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2416def5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ba71545\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\",\"hover_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"633dcb16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"119\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/triangle-dots.png\"},\"image_size\":\"full\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-434,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":270,\"sizes\":[]},\"_animation\":\"fadeInLeft\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d41ff6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":58,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8ef12e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e87806f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"4c4614bf\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-4.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"8876\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Patients\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"743e1e68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"608acfd0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"121\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-5.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"110\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Ambulance\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"398b6142\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"z_index\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6417569d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":200},\"elements\":[{\"id\":\"189fd78d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"122\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-6.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"200\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Doctors\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#ED3B69\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true},{\"id\":\"3696c706\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"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\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300},\"elements\":[{\"id\":\"5395269f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icon_type\":\"image_icon\",\"ekit_funfact_icon_image\":{\"id\":\"123\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-7.png\"},\"ekit_funfact_thumbnail_size\":\"full\",\"ekit_funfact_number\":\"770\",\"ekit_funfact_number_suffix\":\"+\",\"ekit_funfact_title_text\":\"Total Beds\",\"ekit_funfact_super\":\"\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_title_size\":\"h2\",\"ekit_funfact_icon_image_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_funfact_number_count_right_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_description_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_title_color\":\"globals\\/colors?id=546d500\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=c4a50be\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=ef9ed13\",\"ekit_funfact_bg_color\":\"\"},\"ekit_funfact_iamge_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_info_box_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_funfact_bg_background\":\"classic\",\"ekit_funfact_box_shadow_box_shadow_type\":\"yes\",\"ekit_funfact_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_funfact_border_radious\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_funfact_info_box_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_number_typography_typography\":\"custom\",\"ekit_funfact_number_typography_font_family\":\"Poppins\",\"ekit_funfact_number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"ekit_funfact_number_typography_font_weight\":\"800\",\"ekit_funfact_number_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_number_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_title_color\":\"#FFFFFF\",\"ekit_funfact_title_typography_typography\":\"custom\",\"ekit_funfact_title_typography_font_family\":\"Rubik\",\"ekit_funfact_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_funfact_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_funfact_title_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"ekit_funfact_title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_funfact_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_funfact_bg_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38b0ff1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":281,\"sizes\":[]},\"_animation\":\"zoomInDown\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"762ed414\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"77372a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"44537e7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"124\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b81cd57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"472a3e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1FC\"},\"elements\":[{\"id\":\"30dfa08f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3ac05baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"44ccde8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Future of Healthcare\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16ff035\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"43a67f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"2eee3961\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"130d3bc4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"9da2611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bd2eccd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Registration Process\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-8.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\",\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"e9e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1bfe350e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"eb20345\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cfe5a22\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Patient Record Management\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"127\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-9.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=bd6d90d\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"7f67f27c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-3.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"690414c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":400,\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4616345f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5d83cf\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Managing Imaging & Diagnostics\",\"ekit_icon_box_description_text\":\"Suspendisse gravida ex id nulla diet, eget tellus \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_enable_header_icon\":\"image\",\"ekit_icon_box_header_image\":{\"id\":\"128\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elements-medical-icon-line-styles-UTQXLZN-10.png\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h2\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"\"},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_family\":\"Poppins\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_title_typography_group_font_weight\":\"600\",\"ekit_icon_title_typography_group_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_title_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_family\":\"Rubik\",\"ekit_icon_description_typography_group_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_icon_description_typography_group_font_weight\":\"400\",\"ekit_icon_description_typography_group_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"ekit_icon_description_typography_group_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_icon_box_icon_secondary_color_normal\":\"#771341\"},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"352ab988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/circle-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":112,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-8,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0ff271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"812bac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e43ebe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bringing Health To Life For The Whole Family\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b1975\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"262434e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"476044ee\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Blood Transfusion\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"459653d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56c059a4\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dashed\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"7eda19da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"575ef8b7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Medical Insurance\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"34694b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd6d90d\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"649a01f7\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=5279dcb\"},\"animation\":\"fadeInUp\",\"animation_delay\":100},\"elements\":[{\"id\":\"6ee04b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"496f11d1\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_enable_header_icon\":\"none\",\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_title_text\":\"Health Checkup\",\"ekit_icon_box_description_text\":\"Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#02010100\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_bottom_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_description_color\":\"#000000\",\"ekit_icon_description_color_hover\":\"#000000\",\"ekit_icon_box_icon_secondary_color_normal\":\"#18B6E9\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_width\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_width_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"__globals__\":{\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=8ca81ae\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=3b8ae93\",\"ekit_icon_description_color\":\"globals\\/colors?id=primary\",\"ekit_icon_description_color_hover\":\"globals\\/colors?id=primary\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=secondary\"},\"ekit_icon_box_header_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"ekit_icon_box_show_image\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"433ec542\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6cc83f8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_animation\":\"rotateInUpLeft\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2e03bc20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"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\":\"2a2fbff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\"},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_z_index\":2,\"_animation\":\"fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d509e47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-260\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"115\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=9d83217\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"25fdd795\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-292\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"slideInUp\",\"animation_delay\":500},\"elements\":[{\"id\":\"588f5e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd6d90d\"},\"_inline_size_tablet\":100,\"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)\"}},\"elements\":[{\"id\":\"6ac12780\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emergency? Call Us\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24257a74\",\"elType\":\"widget\",\"settings\":{\"title\":\"0120-2819416\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7b377525\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"159c2fa5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"159328d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInRight\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_x_end_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y\":{\"unit\":\"px\",\"size\":-45,\"sizes\":[]},\"_offset_y_tablet\":{\"size\":-16,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49e28918\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"content_position\":\"middle\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"3a0a3e5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f61da5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"See What Our Patients \\nSay\\u2019s About Us\",\"header_size\":\"h3\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca31f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355d5f35\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"37befd2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_delay\":500,\"padding_mobile\":{\"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\":\"6e74590e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_wartermark_custom_position\":\"\",\"ekit_testimonial_wartermark_custom_position_offset_x\":{\"unit\":\"px\",\"size\":268,\"sizes\":[]},\"ekit_testimonial_wartermark_custom_position_offset_y\":{\"unit\":\"px\",\"size\":68,\"sizes\":[]},\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Stella Ruth\",\"_id\":\"0be78b9\",\"designation\":\"Art Director\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"131\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/business-woman-MCSQA8D.jpg\"},\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Sawyer Ford\",\"designation\":\"Web Designer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"132\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\"},\"_id\":\"f980448\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}},{\"client_name\":\"Jack Wyatt\",\"designation\":\"Organizer\",\"review\":\"Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \\naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \\naccumsan enim malesuada eu. \",\"client_photo\":{\"id\":\"133\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/accountant-in-office-PHNC7LQ.jpg\"},\"_id\":\"8be0f5b\",\"client_logo\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":138,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/placeholder-1.png\"}}],\"ekit_testimonial_speed\":3000,\"ekit_testimonial_show_dot\":\"yes\",\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"ekit_testimonial_layout_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"left\",\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Rubik\",\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_typography_font_style\":\"italic\",\"ekit_testimonial_section_wathermark_color\":\"#C3ECF9\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"ekit_testimonial_client_area_alignment\":\"client_left\",\"ekit_testimonial_client_dot_bottom\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"ekit_testimonial_client_dot_background_background\":\"classic\",\"ekit_testimonial_client_dot_active_background_background\":\"classic\",\"_z_index\":2,\"_animation\":\"fadeInRight\",\"_animation_delay\":500,\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=db34ff8\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=a83836d\",\"ekit_testimonial_client_dot_active_background_color\":\"globals\\/colors?id=secondary\",\"ekit_testimonial_client_dot_background_color\":\"globals\\/colors?id=bd6d90d\"},\"ekit_testimonial_layout_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"ekit_testimonial_section_wathermark_typography_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"},{\"id\":\"1edea444\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/square-dots.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-16,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1fc04e06\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"primary_color\":\"#C3ECF9\",\"size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_z_index\":2,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"__globals__\":{\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55939e0f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"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\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"6079ee81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"47fb575d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\"},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2,\"_animation\":\"fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"573c8f8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"125\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-2.png\"},\"image_size\":\"full\",\"_z_index\":0,\"_element_width\":\"initial\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":1060,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":745,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":0,\"unit\":\"px\"},\"_offset_y\":{\"size\":-53,\"unit\":\"px\"},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"fadeInUp\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18fdcd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"gradient\",\"background_color_b\":\"#F4FCFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"641b12a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"4831c26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"20b11d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5df98bb9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"_animation\":\"fadeInRight\",\"_animation_delay\":600,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-35,\"sizes\":[]},\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":-18,\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"300f3ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37},\"elements\":[{\"id\":\"432943f8\",\"elType\":\"widget\",\"settings\":{\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ef6700b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5561af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[{\"id\":\"1d74ef41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"108\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/rectangle-dots-1.png\"},\"image_size\":\"full\",\"_animation\":\"fadeInLeft\",\"_animation_delay\":700,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"732a2eca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29cf81e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Professional & \\nCare Provider\",\"_animation\":\"fadeInUp\",\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5db9ee4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida<\\/p>\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5760ee5d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More\",\"_animation\":\"fadeInUp\",\"_animation_delay\":200,\"background_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"7f431630\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.664000000000001,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74734ec2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"455006f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"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},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":500},\"elements\":[{\"id\":\"33abe18a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"135\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c651e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. KIMBERLY PEREZ\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"205af9c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nephrologists<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7e8941af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":600},\"elements\":[{\"id\":\"53f8fa45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"136\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"39f5acc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. JOSIE BUCHANAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76959f2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a632cef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"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)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_delay\":700},\"elements\":[{\"id\":\"18df6647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"137\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30970495\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. ALBERT DUNCAN\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=3762adb\"},\"title_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d8fce20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Surgion Specialist<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a83836d\",\"text_color\":\"globals\\/colors?id=5279dcb\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"514dba4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"165\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"background_color\":\"#FFE6F1\"},\"elements\":[{\"id\":\"444c4f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a6877c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/NMH-logo-5-02-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c0dd14c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla<\\/p>\",\"__globals__\":{\"text_color\":\"\"},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b5942\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Twitter\",\"_id\":\"c7fe17f\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Facebook\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"c77d3d3\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-google-plus-g\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Google Plus\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"39945c0\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"ekit_socialmedia_label\":\"Linked in\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"7be758b\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Instagram\",\"ekit_socialmedia_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_bg_color\":\"#771341\",\"__globals__\":{\"ekit_socialmedia_icon_color\":\"globals\\/colors?id=546d500\",\"ekit_socialmedia_icon_hover_bg_color\":\"\"},\"_id\":\"8e8f02a\",\"ekit_socialmedia_icon_color\":\"#FFFFFF\",\"ekit_socialmedia_icon_hover_bg_color\":\"#771341\"}],\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialmedai_list_icon_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"ekit_socialmedai_list_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_z_index\":2},\"elements\":[],\"widgetType\":\"elementskit-social-media\"},{\"id\":\"72195725\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/curve-dots-2.png\"},\"image_size\":\"full\",\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":552,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-335,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-61,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":2,\"unit\":\"px\"},\"_offset_y\":{\"size\":-80,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-51,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68c23d48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44e76a3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"433eb921\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\",\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"_id\":\"7ee8df1\"},{\"text\":\"info@nmh.net.in\",\"selected_icon\":{\"value\":\"icon icon-envelope11\",\"library\":\"ekiticons\"},\"_id\":\"52d1d17\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"0120-4130154\",\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"_id\":\"5ec116f\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\"},\"icon_color\":\"#771341\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"516f0c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f860bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Services\",\"header_size\":\"h6\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e429d29\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Bipolar Disorders\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Anxiety Therapy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Executive Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"\"},\"icon_color\":\"#FFFFFF\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"9e3e4f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":34,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"217cb2e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"92\",\"url\":\"https:\\/\\/testhospital.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/05\\/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":0,\"bottom\":\"-85\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"13\",\"bottom\":\"20\",\"left\":\"13\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"animation\":\"slideInRight\",\"background_overlay_color\":\"#771341\"},\"elements\":[{\"id\":\"4a81ef20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"136498d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Working Hours\",\"selected_icon\":{\"value\":\"icon icon-clock1\",\"library\":\"ekiticons\"},\"_id\":\"db03396\"}],\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_self_align\":\"center\",\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=primary\",\"text_color\":\"globals\\/colors?id=546d500\",\"icon_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1e037545\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"Tusday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"Wednesday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"Thursday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"Friday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"Saturday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"Sunday :\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2b309bde\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"7am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"7ee8df1\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"52d1d17\"},{\"text\":\"8am - 9pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5ec116f\"},{\"text\":\"8am - 8pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"eb5dd58\"},{\"text\":\"9am - 7pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b23f15b\"},{\"text\":\"10am - 6pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"987f178\"},{\"text\":\"10am - 1pm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc58004\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_element_width\":\"auto\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=546d500\",\"text_color\":\"globals\\/colors?id=546d500\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"383e52a5\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_delay\":300,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"184bb3b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ed9d18d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2021 Mediq All rights reserved<\\/p>\",\"align\":\"center\",\"text_color\":\"#771341\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1492,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:85:{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\";i:67;s:12:\"e-animations\";i:68;s:12:\"e-animations\";i:69;s:12:\"e-animations\";i:70;s:12:\"e-animations\";i:71;s:12:\"e-animations\";i:72;s:12:\"e-animations\";i:73;s:12:\"e-animations\";i:74;s:12:\"e-animations\";i:75;s:12:\"e-animations\";i:76;s:12:\"e-animations\";i:77;s:12:\"e-animations\";i:78;s:12:\"e-animations\";i:79;s:12:\"e-animations\";i:80;s:12:\"e-animations\";i:81;s:12:\"e-animations\";i:82;s:12:\"e-animations\";i:83;s:12:\"e-animations\";i:84;s:12:\"e-animations\";}}'),(1495,84,'_elementor_css','a:6:{s:4:\"time\";i:1688190702;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:5:\"Rubik\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1496,206,'_elementor_css','a:6:{s:4:\"time\";i:1688190704;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:6;s:5:\"Rubik\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";i:6;s:9:\"ekiticons\";i:17;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1497,189,'_elementor_css','a:6:{s:4:\"time\";i:1688190704;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1498,200,'_elementor_css','a:6:{s:4:\"time\";i:1688190704;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:9:\"fa-brands\";i:4;s:9:\"ekiticons\";i:8;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!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=268 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-05-29 08:51:33','2023-05-29 08:51:33','<!-- 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-05-29 08:51:33','2023-05-29 08:51:33','',0,'https://testhospital.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-05-29 08:51:33','2023-05-29 08:51:33','<!-- 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://testhospital.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-05-29 08:51:33','2023-05-29 08:51:33','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-05-29 08:51:33','2023-05-29 08:51:33','<!-- 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://testhospital.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-05-29 08:51:33','2023-05-29 08:51:33','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(4,1,'2023-05-29 08:53:24','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-05-29 08:53:24','0000-00-00 00:00:00','',0,'https://testhospital.in8.cdn-alpha.com/?p=4',0,'post','',0),(5,1,'2023-05-29 09:02:56','2023-05-29 09:02:56','','Default Kit','','publish','closed','closed','','default-kit','','','2023-05-29 09:02:56','2023-05-29 09:02:56','',0,'https://testhospital.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(7,1,'2023-05-29 09:07:02','2023-05-29 09:07:02','','Kit Styles: Medisa - Template Kits For Medical Services & Clinic','','publish','closed','closed','','global-kit-styles','','','2023-05-29 09:07:03','2023-05-29 09:07:03','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(8,1,'2023-05-29 09:07:03','2023-05-29 09:07:03','','Global Kit Styles','','inherit','closed','closed','','7-revision-v1','','','2023-05-29 09:07:03','2023-05-29 09:07:03','',7,'https://testhospital.in8.cdn-alpha.com/?p=8',0,'revision','',0),(9,1,'2023-05-29 09:07:03','2023-05-29 09:07:03','','Global Kit Styles','','inherit','closed','closed','','7-revision-v1','','','2023-05-29 09:07:03','2023-05-29 09:07:03','',7,'https://testhospital.in8.cdn-alpha.com/?p=9',0,'revision','',0),(10,1,'2023-05-29 09:07:03','2023-05-29 09:07:03','','Kit Styles: Medisa - Template Kits For Medical Services & Clinic','','inherit','closed','closed','','7-revision-v1','','','2023-05-29 09:07:03','2023-05-29 09:07:03','',7,'https://testhospital.in8.cdn-alpha.com/?p=10',0,'revision','',0),(11,1,'2023-05-29 09:08:38','2023-05-29 09:08:38','','Home','','trash','closed','closed','','home__trashed','','','2023-05-29 10:46:56','2023-05-29 10:46:56','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=11',0,'page','',0),(12,1,'2023-05-29 09:08:32','2023-05-29 09:08:32','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentythree','','','2023-05-29 09:08:32','2023-05-29 09:08:32','',0,'https://testhospital.in8.cdn-alpha.com/?p=12',0,'wp_global_styles','',0),(13,1,'2023-05-29 09:08:38','2023-05-29 09:08:38','','Home','','inherit','closed','closed','','11-revision-v1','','','2023-05-29 09:08:38','2023-05-29 09:08:38','',11,'https://testhospital.in8.cdn-alpha.com/?p=13',0,'revision','',0),(14,1,'2023-05-29 09:15:14','2023-05-29 09:15:14','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-05-29 09:15:14','2023-05-29 09:15:14','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/placeholder.png',0,'attachment','image/png',0),(15,1,'2023-05-29 09:15:35','2023-05-29 09:15:35','<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>','Medisa V1 &#8211; Header','','trash','closed','closed','','medisa-v1-header__trashed','','','2023-05-29 10:24:51','2023-05-29 10:24:51','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=medisa-v1-header',0,'elementor_library','',0),(16,1,'2023-05-29 09:15:36','2023-05-29 09:15:36','<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>','Medisa V1 &#8211; Header','','inherit','closed','closed','','15-revision-v1','','','2023-05-29 09:15:36','2023-05-29 09:15:36','',15,'https://testhospital.in8.cdn-alpha.com/?p=16',0,'revision','',0),(17,1,'2023-05-29 09:15:54','2023-05-29 09:15:54','<style>/*! elementor - v3.13.3 - 28-05-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>Get in Touch With Us.</h2>		\n			Metus class pulvinar blandit nec sodales posuere amet odio aptent		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Head Office					\n				</h4>\n									<p>\n						Jln Cempaka Wangi No 22 - Jakarta, ID					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(62) 21-2012-2112 </br>\n+(62) 21-2012-1234					</p>\n				<h4>\n						Email Us					\n				</h4>\n									<p>\n						support@domain.tld </br>\nsupport@domain.tld					</p>\n			<h2>Sign Up for Our Newsletter.</h2>		\n		<p>Eleifend senectus ornare hendrerit dis lacinia habitant mattis </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>Medical Service and Clinic</h6>		\n			<style>/*! elementor - v3.13.3 - 28-05-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\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n		<p>© 2021 medisa template kit. All rights reserved. Design by QuickenWorks</p>','Medisa V1 &#8211; Footer','','trash','closed','closed','','medisa-v1-footer__trashed','','','2023-05-29 10:24:50','2023-05-29 10:24:50','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=medisa-v1-footer',0,'elementor_library','',0),(18,1,'2023-05-29 09:15:55','2023-05-29 09:15:55','<style>/*! elementor - v3.13.3 - 28-05-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>Get in Touch With Us.</h2>		\n			Metus class pulvinar blandit nec sodales posuere amet odio aptent		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h4>\n						Head Office					\n				</h4>\n									<p>\n						Jln Cempaka Wangi No 22 - Jakarta, ID					</p>\n				<h4>\n						Call Us					\n				</h4>\n									<p>\n						+(62) 21-2012-2112 </br>\n+(62) 21-2012-1234					</p>\n				<h4>\n						Email Us					\n				</h4>\n									<p>\n						support@domain.tld </br>\nsupport@domain.tld					</p>\n			<h2>Sign Up for Our Newsletter.</h2>		\n		<p>Eleifend senectus ornare hendrerit dis lacinia habitant mattis </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>Medical Service and Clinic</h6>		\n			<style>/*! elementor - v3.13.3 - 28-05-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\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n		<p>© 2021 medisa template kit. All rights reserved. Design by QuickenWorks</p>','Medisa V1 &#8211; Footer','','inherit','closed','closed','','17-revision-v1','','','2023-05-29 09:15:55','2023-05-29 09:15:55','',17,'https://testhospital.in8.cdn-alpha.com/?p=18',0,'revision','',0),(19,1,'2023-05-29 09:18:25','2023-05-29 09:18:25','<style>/*! elementor - v3.13.3 - 28-05-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><h6>Better Health</h6>		\n			<h1>People\'s Health is Our Priority</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>About Us</h6>		\n			<h2>We Are Professional Medical Service & Clinic</h2>		\n		<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.</p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<h6>Watch Video</h6>		\n			<h6>Services</h6>		\n			<h2>The Best Service</h2>		\n			<h6>Achievements</h6>		\n			<h2>We\'ve won awards</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img src=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>Testimonial</h6>		\n			<h2>What They Say</h2>		\n			<h6>Partner</h6>		\n			<h2>Awesome Partner</h2>		\n							<h6>\n				Editor\'s Choice				</h6>\n			<h2>Featured Article</h2>','Homepage','','trash','closed','closed','','homepage__trashed','','','2023-05-29 10:24:49','2023-05-29 10:24:49','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=homepage',0,'elementor_library','',0),(20,1,'2023-05-29 09:18:25','2023-05-29 09:18:25','','Homepage','','inherit','closed','closed','','19-revision-v1','','','2023-05-29 09:18:25','2023-05-29 09:18:25','',19,'https://testhospital.in8.cdn-alpha.com/?p=20',0,'revision','',0),(21,1,'2023-05-29 09:18:26','2023-05-29 09:18:26','<style>/*! elementor - v3.13.3 - 28-05-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><h6>Better Health</h6>		\n			<h1>People\'s Health is Our Priority</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>About Us</h6>		\n			<h2>We Are Professional Medical Service & Clinic</h2>		\n		<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.</p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<h6>Watch Video</h6>		\n			<h6>Services</h6>		\n			<h2>The Best Service</h2>		\n			<h6>Achievements</h6>		\n			<h2>We\'ve won awards</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img src=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>Testimonial</h6>		\n			<h2>What They Say</h2>		\n			<h6>Partner</h6>		\n			<h2>Awesome Partner</h2>		\n							<h6>\n				Editor\'s Choice				</h6>\n			<h2>Featured Article</h2>','Homepage','','inherit','closed','closed','','19-revision-v1','','','2023-05-29 09:18:26','2023-05-29 09:18:26','',19,'https://testhospital.in8.cdn-alpha.com/?p=21',0,'revision','',0),(22,1,'2023-05-29 09:28:16','2023-05-29 09:28:16','<style>/*! elementor - v3.13.3 - 28-05-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><h6>Better Health</h6>		\n			<h1>People\'s Health is Our Priority</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>About Us</h6>		\n			<h2>We Are Professional Medical Service & Clinic</h2>		\n		<p>Finibus aptent pede aliquet adipiscing lacinia quam. Scelerisque est pede iaculis. Dolor vivamus rhoncus sapien vulputate porttitor class facilisis. Netus magna lobortis morbi. Nisi eu nam tempor letius.</p><p>Ultrices consequat viverra quis. Vehicula fames risus parturient ultricies. Diam pharetra condimentum dapibus fames senectus laoreet et. Magna viverra vestibulum rutrum arcu letius.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n			<h6>Watch Video</h6>		\n			<h6>Services</h6>		\n			<h2>The Best Service</h2>		\n			<h6>Achievements</h6>		\n			<h2>We\'ve won awards</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img src=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n			<h6>Testimonial</h6>		\n			<h2>What They Say</h2>		\n			<h6>Partner</h6>		\n			<h2>Awesome Partner</h2>		\n							<h6>\n				Editor\'s Choice				</h6>\n			<h2>Featured Article</h2>','Home','','inherit','closed','closed','','11-autosave-v1','','','2023-05-29 09:29:15','2023-05-29 09:29:15','',11,'https://testhospital.in8.cdn-alpha.com/?p=22',0,'revision','',0),(24,1,'2023-05-29 10:30:58','2023-05-29 10:30:58','','Kit Styles: Gomedic','','publish','closed','closed','','global-kit-styles-2','','','2023-05-29 10:31:00','2023-05-29 10:31:00','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=global-kit-styles-2',0,'elementor_library','',0),(25,1,'2023-05-29 10:30:59','2023-05-29 10:30:59','','Global Kit Styles','','inherit','closed','closed','','24-revision-v1','','','2023-05-29 10:30:59','2023-05-29 10:30:59','',24,'https://testhospital.in8.cdn-alpha.com/?p=25',0,'revision','',0),(26,1,'2023-05-29 10:30:59','2023-05-29 10:30:59','','Global Kit Styles','','inherit','closed','closed','','24-revision-v1','','','2023-05-29 10:30:59','2023-05-29 10:30:59','',24,'https://testhospital.in8.cdn-alpha.com/?p=26',0,'revision','',0),(27,1,'2023-05-29 10:31:00','2023-05-29 10:31:00','','Kit Styles: Gomedic','','inherit','closed','closed','','24-revision-v1','','','2023-05-29 10:31:00','2023-05-29 10:31:00','',24,'https://testhospital.in8.cdn-alpha.com/?p=27',0,'revision','',0),(28,1,'2023-05-29 10:31:23','2023-05-29 10:31:23','','dots.png','','inherit','open','closed','','dots-png','','','2023-05-29 10:31:23','2023-05-29 10:31:23','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png',0,'attachment','image/png',0),(29,1,'2023-05-29 10:31:24','2023-05-29 10:31:24','','Mask-Group.png','','inherit','open','closed','','mask-group-png','','','2023-05-29 10:31:24','2023-05-29 10:31:24','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png',0,'attachment','image/png',0),(30,1,'2023-05-29 10:31:26','2023-05-29 10:31:26','','Rectangle-5.png','','inherit','open','closed','','rectangle-5-png','','','2023-05-29 10:31:26','2023-05-29 10:31:26','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png',0,'attachment','image/png',0),(31,1,'2023-05-29 10:31:27','2023-05-29 10:31:27','','Group-7-1.png','','inherit','open','closed','','group-7-1-png','','','2023-05-29 10:31:27','2023-05-29 10:31:27','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png',0,'attachment','image/png',0),(32,1,'2023-05-29 10:31:28','2023-05-29 10:31:28','','Logo.png','','inherit','open','closed','','logo-png','','','2023-05-29 10:31:28','2023-05-29 10:31:28','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png',0,'attachment','image/png',0),(33,1,'2023-05-29 10:31:28','2023-05-29 10:31:28','<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','trash','closed','closed','','header__trashed','','','2023-05-30 08:29:11','2023-05-30 08:29:11','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=header',0,'elementor_library','',0),(34,1,'2023-05-29 10:31:28','2023-05-29 10:31:28','','Group-8-1.png','','inherit','open','closed','','group-8-1-png','','','2023-05-29 10:31:28','2023-05-29 10:31:28','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png',0,'attachment','image/png',0),(35,1,'2023-05-29 10:31:29','2023-05-29 10:31:29','','Group-9-1.png','','inherit','open','closed','','group-9-1-png','','','2023-05-29 10:31:29','2023-05-29 10:31:29','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png',0,'attachment','image/png',0),(36,1,'2023-05-29 10:31:29','2023-05-29 10:31:29','<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','33-revision-v1','','','2023-05-29 10:31:29','2023-05-29 10:31:29','',33,'https://testhospital.in8.cdn-alpha.com/?p=36',0,'revision','',0),(37,1,'2023-05-29 10:31:30','2023-05-29 10:31:30','','doctor-hero-21.png','','inherit','open','closed','','doctor-hero-21-png','','','2023-05-29 10:31:30','2023-05-29 10:31:30','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png',0,'attachment','image/png',0),(38,1,'2023-05-29 10:31:31','2023-05-29 10:31:31','<style>/*! elementor - v3.13.3 - 28-05-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>Get Your Free Medical Checkup.<br>Let\'s Connect With Us!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>Information</h3>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\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											Careers\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n			<h3>Information</h3>		\n					<ul>\n							<li>\n										Gomedic Building, Sesame Street London, United Kingdom\n									</li>\n								<li>\n										hello@gomedic.com\n									</li>\n								<li>\n										(001) 2341 2342\n									</li>\n						</ul>\n			Gomedic Template Kit By Rootlayers		\n			@ All Rights Reserved','Footer','','trash','closed','closed','','footer__trashed','','','2023-05-30 08:29:10','2023-05-30 08:29:10','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(39,1,'2023-05-29 10:31:32','2023-05-29 10:31:32','','Group-35-1.png','','inherit','open','closed','','group-35-1-png','','','2023-05-29 10:31:32','2023-05-29 10:31:32','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png',0,'attachment','image/png',0),(40,1,'2023-05-29 10:31:33','2023-05-29 10:31:33','','Group-38-1.png','','inherit','open','closed','','group-38-1-png','','','2023-05-29 10:31:33','2023-05-29 10:31:33','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png',0,'attachment','image/png',0),(41,1,'2023-05-29 10:31:32','2023-05-29 10:31:32','<style>/*! elementor - v3.13.3 - 28-05-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>Get Your Free Medical Checkup.<br>Let\'s Connect With Us!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>Information</h3>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\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											Careers\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n			<h3>Information</h3>		\n					<ul>\n							<li>\n										Gomedic Building, Sesame Street London, United Kingdom\n									</li>\n								<li>\n										hello@gomedic.com\n									</li>\n								<li>\n										(001) 2341 2342\n									</li>\n						</ul>\n			Gomedic Template Kit By Rootlayers		\n			@ All Rights Reserved','Footer','','inherit','closed','closed','','38-revision-v1','','','2023-05-29 10:31:32','2023-05-29 10:31:32','',38,'https://testhospital.in8.cdn-alpha.com/?p=41',0,'revision','',0),(42,1,'2023-05-29 10:31:33','2023-05-29 10:31:33','','Group-37-1.png','','inherit','open','closed','','group-37-1-png','','','2023-05-29 10:31:33','2023-05-29 10:31:33','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png',0,'attachment','image/png',0),(43,1,'2023-05-29 10:31:34','2023-05-29 10:31:34','','Group-36-1.png','','inherit','open','closed','','group-36-1-png','','','2023-05-29 10:31:34','2023-05-29 10:31:34','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png',0,'attachment','image/png',0),(44,1,'2023-05-29 10:31:37','2023-05-29 10:31:37','','Rectangle-12.png','','inherit','open','closed','','rectangle-12-png','','','2023-05-29 10:31:37','2023-05-29 10:31:37','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png',0,'attachment','image/png',0),(45,1,'2023-05-29 10:31:38','2023-05-29 10:31:38','','doctors-smile.png','','inherit','open','closed','','doctors-smile-png','','','2023-05-29 10:31:38','2023-05-29 10:31:38','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png',0,'attachment','image/png',0),(46,1,'2023-05-29 10:31:40','2023-05-29 10:31:40','','team6.png','','inherit','open','closed','','team6-png','','','2023-05-29 10:31:40','2023-05-29 10:31:40','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png',0,'attachment','image/png',0),(47,1,'2023-05-29 10:31:43','2023-05-29 10:31:43','','team1.png','','inherit','open','closed','','team1-png','','','2023-05-29 10:31:43','2023-05-29 10:31:43','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png',0,'attachment','image/png',0),(48,1,'2023-05-29 10:31:45','2023-05-29 10:31:45','','team3.png','','inherit','open','closed','','team3-png','','','2023-05-29 10:31:45','2023-05-29 10:31:45','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png',0,'attachment','image/png',0),(49,1,'2023-05-29 10:31:46','2023-05-29 10:31:46','','team4.png','','inherit','open','closed','','team4-png','','','2023-05-29 10:31:46','2023-05-29 10:31:46','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png',0,'attachment','image/png',0),(50,1,'2023-05-29 10:31:47','2023-05-29 10:31:47','','team3-1-1.png','','inherit','open','closed','','team3-1-1-png','','','2023-05-29 10:31:47','2023-05-29 10:31:47','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png',0,'attachment','image/png',0),(51,1,'2023-05-29 10:31:48','2023-05-29 10:31:48','','team5-1-1.png','','inherit','open','closed','','team5-1-1-png','','','2023-05-29 10:31:48','2023-05-29 10:31:48','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png',0,'attachment','image/png',0),(52,1,'2023-05-29 10:31:49','2023-05-29 10:31:49','','team1-1-1.png','','inherit','open','closed','','team1-1-1-png','','','2023-05-29 10:31:49','2023-05-29 10:31:49','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png',0,'attachment','image/png',0),(53,1,'2023-05-29 10:31:50','2023-05-29 10:31:50','<style>/*! elementor - v3.13.3 - 28-05-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>Medical Checkup		\n			<h1>Best Medical Clinic For Your Healthcare</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"438\" height=\"675\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png 438w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21-195x300.png 195w\" sizes=\"(max-width: 438px) 100vw, 438px\" />															\n			Medical Checkup		\n			<h2>Why Choose Gomedic For<br>Your Healthcare?</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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 width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Reservation</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>All Specialist</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Medical Record</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Customer Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"457\" height=\"442\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png 457w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12-300x290.png 300w\" sizes=\"(max-width: 457px) 100vw, 457px\" />															\n															<img width=\"469\" height=\"532\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png 469w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile-264x300.png 264w\" sizes=\"(max-width: 469px) 100vw, 469px\" />															\n			Who We Are		\n			<h2>Professional Doctor With Years Of Experince</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem Ipsum Dolor Sit Amet\n									</li>\n								<li>\n										Luctus Nec Mattis Dapibus\n									</li>\n								<li>\n										Consectur Adipising ut elit\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			Team		\n			<h2>Meet Our Professionals</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n			Testimony		\n			<h2>What Our Patient Say About Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"150\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n			Awards		\n			<h2>Our Doctor Specialist &amp;<br>Experience</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				%\n							Happy Patients\n				0\n				+\n							Team Members\n				0\n				+\n							Year Experience\n				0\n				+\n							Global Awards','Home','','trash','closed','closed','','home__trashed','','','2023-05-30 08:29:10','2023-05-30 08:29:10','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(54,1,'2023-05-29 10:31:50','2023-05-29 10:31:50','','Home','','inherit','closed','closed','','53-revision-v1','','','2023-05-29 10:31:50','2023-05-29 10:31:50','',53,'https://testhospital.in8.cdn-alpha.com/?p=54',0,'revision','',0),(55,1,'2023-05-29 10:31:51','2023-05-29 10:31:51','<style>/*! elementor - v3.13.3 - 28-05-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>Medical Checkup		\n			<h1>Best Medical Clinic For Your Healthcare</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"438\" height=\"675\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png 438w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21-195x300.png 195w\" sizes=\"(max-width: 438px) 100vw, 438px\" />															\n			Medical Checkup		\n			<h2>Why Choose Gomedic For<br>Your Healthcare?</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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 width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Reservation</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>All Specialist</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Medical Record</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Customer Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"457\" height=\"442\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png 457w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12-300x290.png 300w\" sizes=\"(max-width: 457px) 100vw, 457px\" />															\n															<img width=\"469\" height=\"532\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png 469w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile-264x300.png 264w\" sizes=\"(max-width: 469px) 100vw, 469px\" />															\n			Who We Are		\n			<h2>Professional Doctor With Years Of Experince</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem Ipsum Dolor Sit Amet\n									</li>\n								<li>\n										Luctus Nec Mattis Dapibus\n									</li>\n								<li>\n										Consectur Adipising ut elit\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			Team		\n			<h2>Meet Our Professionals</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n			Testimony		\n			<h2>What Our Patient Say About Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"150\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n			Awards		\n			<h2>Our Doctor Specialist &amp;<br>Experience</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				%\n							Happy Patients\n				0\n				+\n							Team Members\n				0\n				+\n							Year Experience\n				0\n				+\n							Global Awards','Home','','inherit','closed','closed','','53-revision-v1','','','2023-05-29 10:31:51','2023-05-29 10:31:51','',53,'https://testhospital.in8.cdn-alpha.com/?p=55',0,'revision','',0),(58,1,'2023-05-29 10:46:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-05-29 10:46:12','0000-00-00 00:00:00','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=58',0,'page','',0),(59,1,'2023-05-29 10:47:12','2023-05-29 10:47:12','<style>/*! elementor - v3.13.3 - 28-05-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>Medical Checkup		\n			<h1>Best Medical Clinic For Your Healthcare</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"438\" height=\"675\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png 438w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21-195x300.png 195w\" sizes=\"(max-width: 438px) 100vw, 438px\" />															\n			Medical Checkup		\n			<h2>Why Choose Gomedic For<br>Your Healthcare?</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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 width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Reservation</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>All Specialist</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Medical Record</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Customer Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"457\" height=\"442\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png 457w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12-300x290.png 300w\" sizes=\"(max-width: 457px) 100vw, 457px\" />															\n															<img width=\"469\" height=\"532\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png 469w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile-264x300.png 264w\" sizes=\"(max-width: 469px) 100vw, 469px\" />															\n			Who We Are		\n			<h2>Professional Doctor With Years Of Experince</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem Ipsum Dolor Sit Amet\n									</li>\n								<li>\n										Luctus Nec Mattis Dapibus\n									</li>\n								<li>\n										Consectur Adipising ut elit\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			Team		\n			<h2>Meet Our Professionals</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n			Testimony		\n			<h2>What Our Patient Say About Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"150\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n			Awards		\n			<h2>Our Doctor Specialist &amp;<br>Experience</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				%\n							Happy Patients\n				0\n				+\n							Team Members\n				0\n				+\n							Year Experience\n				0\n				+\n							Global Awards','Home','','trash','closed','closed','','home__trashed-2','','','2023-05-30 08:28:46','2023-05-30 08:28:46','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=59',0,'page','',0),(60,1,'2023-05-29 10:47:12','2023-05-29 10:47:12','','Home','','inherit','closed','closed','','59-revision-v1','','','2023-05-29 10:47:12','2023-05-29 10:47:12','',59,'https://testhospital.in8.cdn-alpha.com/?p=60',0,'revision','',0),(62,1,'2023-05-29 10:49:18','2023-05-29 10:49:18','','Home','','inherit','closed','closed','','59-revision-v1','','','2023-05-29 10:49:18','2023-05-29 10:49:18','',59,'https://testhospital.in8.cdn-alpha.com/?p=62',0,'revision','',0),(63,1,'2023-05-29 10:49:19','2023-05-29 10:49:19','','Home','','inherit','closed','closed','','59-revision-v1','','','2023-05-29 10:49:19','2023-05-29 10:49:19','',59,'https://testhospital.in8.cdn-alpha.com/?p=63',0,'revision','',0),(64,1,'2023-05-29 10:49:20','2023-05-29 10:49:20','<style>/*! elementor - v3.13.3 - 28-05-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>Medical Checkup		\n			<h1>Best Medical Clinic For Your Healthcare</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"438\" height=\"675\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png 438w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21-195x300.png 195w\" sizes=\"(max-width: 438px) 100vw, 438px\" />															\n			Medical Checkup		\n			<h2>Why Choose Gomedic For<br>Your Healthcare?</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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 width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Reservation</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>All Specialist</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Medical Record</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Customer Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"457\" height=\"442\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png 457w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12-300x290.png 300w\" sizes=\"(max-width: 457px) 100vw, 457px\" />															\n															<img width=\"469\" height=\"532\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png 469w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile-264x300.png 264w\" sizes=\"(max-width: 469px) 100vw, 469px\" />															\n			Who We Are		\n			<h2>Professional Doctor With Years Of Experince</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem Ipsum Dolor Sit Amet\n									</li>\n								<li>\n										Luctus Nec Mattis Dapibus\n									</li>\n								<li>\n										Consectur Adipising ut elit\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			Team		\n			<h2>Meet Our Professionals</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n			Testimony		\n			<h2>What Our Patient Say About Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"150\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n			Awards		\n			<h2>Our Doctor Specialist &amp;<br>Experience</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				%\n							Happy Patients\n				0\n				+\n							Team Members\n				0\n				+\n							Year Experience\n				0\n				+\n							Global Awards','Home','','inherit','closed','closed','','59-revision-v1','','','2023-05-29 10:49:20','2023-05-29 10:49:20','',59,'https://testhospital.in8.cdn-alpha.com/?p=64',0,'revision','',0),(65,1,'2023-05-29 12:27:29','2023-05-29 12:27:29','<style>/*! elementor - v3.13.3 - 28-05-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=\"800\" height=\"293\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1024x375.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-2048x751.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','trash','closed','closed','','header__trashed','','','2023-05-30 08:29:31','2023-05-30 08:29:31','',0,'https://testhospital.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=65',0,'elementor-hf','',0),(66,1,'2023-05-29 12:27:29','2023-05-29 12:27:29','','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-29 12:27:29','2023-05-29 12:27:29','',65,'https://testhospital.in8.cdn-alpha.com/?p=66',0,'revision','',0),(68,1,'2023-05-29 12:27:58','2023-05-29 12:27:58','','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-29 12:27:58','2023-05-29 12:27:58','',65,'https://testhospital.in8.cdn-alpha.com/?p=68',0,'revision','',0),(69,1,'2023-05-29 12:27:59','2023-05-29 12:27:59','','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-29 12:27:59','2023-05-29 12:27:59','',65,'https://testhospital.in8.cdn-alpha.com/?p=69',0,'revision','',0),(70,1,'2023-05-29 12:28:00','2023-05-29 12:28:00','<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-29 12:28:00','2023-05-29 12:28:00','',65,'https://testhospital.in8.cdn-alpha.com/?p=70',0,'revision','',0),(71,1,'2023-05-29 12:31:57','2023-05-29 12:31:57','<style>/*! elementor - v3.13.3 - 28-05-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>Get Your Free Medical Checkup.<br>Let\'s Connect With Us!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>Information</h3>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\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											Careers\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n			<h3>Information</h3>		\n					<ul>\n							<li>\n										Gomedic Building, Sesame Street London, United Kingdom\n									</li>\n								<li>\n										hello@gomedic.com\n									</li>\n								<li>\n										(001) 2341 2342\n									</li>\n						</ul>\n			Gomedic Template Kit By Rootlayers		\n			@ All Rights Reserved','footer','','trash','closed','closed','','footer__trashed','','','2023-05-30 08:29:31','2023-05-30 08:29:31','',0,'https://testhospital.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=71',0,'elementor-hf','',0),(72,1,'2023-05-29 12:31:44','2023-05-29 12:31:44','','footer','','inherit','closed','closed','','71-revision-v1','','','2023-05-29 12:31:44','2023-05-29 12:31:44','',71,'https://testhospital.in8.cdn-alpha.com/?p=72',0,'revision','',0),(74,1,'2023-05-29 12:32:43','2023-05-29 12:32:43','','footer','','inherit','closed','closed','','71-revision-v1','','','2023-05-29 12:32:43','2023-05-29 12:32:43','',71,'https://testhospital.in8.cdn-alpha.com/?p=74',0,'revision','',0),(75,1,'2023-05-29 12:32:44','2023-05-29 12:32:44','','footer','','inherit','closed','closed','','71-revision-v1','','','2023-05-29 12:32:44','2023-05-29 12:32:44','',71,'https://testhospital.in8.cdn-alpha.com/?p=75',0,'revision','',0),(76,1,'2023-05-29 12:32:44','2023-05-29 12:32:44','<style>/*! elementor - v3.13.3 - 28-05-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>Get Your Free Medical Checkup.<br>Let\'s Connect With Us!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>Information</h3>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\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											Careers\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Contact Us\n											</a>\n									</li>\n						</ul>\n			<h3>Information</h3>		\n					<ul>\n							<li>\n										Gomedic Building, Sesame Street London, United Kingdom\n									</li>\n								<li>\n										hello@gomedic.com\n									</li>\n								<li>\n										(001) 2341 2342\n									</li>\n						</ul>\n			Gomedic Template Kit By Rootlayers		\n			@ All Rights Reserved','footer','','inherit','closed','closed','','71-revision-v1','','','2023-05-29 12:32:44','2023-05-29 12:32:44','',71,'https://testhospital.in8.cdn-alpha.com/?p=76',0,'revision','',0),(78,1,'2023-05-30 08:02:23','2023-05-30 08:02:23','','NMH logo 5-02 (1)','','inherit','open','closed','','nmh-logo-5-02-1','','','2023-05-30 08:02:23','2023-05-30 08:02:23','',65,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1.png',0,'attachment','image/png',0),(79,1,'2023-05-30 08:06:00','2023-05-30 08:06:00','<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-30 08:06:00','2023-05-30 08:06:00','',65,'https://testhospital.in8.cdn-alpha.com/?p=79',0,'revision','',0),(80,1,'2023-05-30 08:06:00','2023-05-30 08:06:00','<style>/*! elementor - v3.13.3 - 28-05-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=\"155\" height=\"30\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo.png 155w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Logo-150x30.png 150w\" sizes=\"(max-width: 155px) 100vw, 155px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-30 08:06:00','2023-05-30 08:06:00','',65,'https://testhospital.in8.cdn-alpha.com/?p=80',0,'revision','',0),(81,1,'2023-05-30 08:06:01','2023-05-30 08:06:01','<style>/*! elementor - v3.13.3 - 28-05-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=\"800\" height=\"293\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1024x375.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-2048x751.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','65-revision-v1','','','2023-05-30 08:06:01','2023-05-30 08:06:01','',65,'https://testhospital.in8.cdn-alpha.com/?p=81',0,'revision','',0),(82,1,'2023-05-30 08:13:39','2023-05-30 08:13:39','<style>/*! elementor - v3.13.3 - 28-05-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>Medical Checkup		\n			<h1>Best Medical Clinic For Your Healthcare</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<a href=\"#\" role=\"button\">\n						Book Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-7-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-8-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"80\" height=\"80\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-9-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"438\" height=\"675\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21.png 438w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-hero-21-195x300.png 195w\" sizes=\"(max-width: 438px) 100vw, 438px\" />															\n			Medical Checkup		\n			<h2>Why Choose Gomedic For<br>Your Healthcare?</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-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 width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-35-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Online Reservation</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-38-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>All Specialist</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-37-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Medical Record</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n			<figure><img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Group-36-1.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Customer Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>		\n															<img width=\"133\" height=\"128\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Mask-Group.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"105\" height=\"158\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/dots.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"457\" height=\"442\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12.png 457w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-12-300x290.png 300w\" sizes=\"(max-width: 457px) 100vw, 457px\" />															\n															<img width=\"469\" height=\"532\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile.png 469w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctors-smile-264x300.png 264w\" sizes=\"(max-width: 469px) 100vw, 469px\" />															\n			Who We Are		\n			<h2>Professional Doctor With Years Of Experince</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet.</p>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Lorem Ipsum Dolor Sit Amet\n									</li>\n								<li>\n										Luctus Nec Mattis Dapibus\n									</li>\n								<li>\n										Consectur Adipising ut elit\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			Team		\n			<h2>Meet Our Professionals</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team6-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n															<img width=\"527\" height=\"576\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5.png 527w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/Rectangle-5-274x300.png 274w\" sizes=\"(max-width: 527px) 100vw, 527px\" />															\n															<img width=\"298\" height=\"394\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4.png 298w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team4-227x300.png 227w\" sizes=\"(max-width: 298px) 100vw, 298px\" />															\n			<h3>dr. Harman White</h3>		\n			CEO & Director		\n			Testimony		\n			<h2>What Our Patient Say About Us</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team3-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n@charset \"UTF-8\";.elementor-star-rating{color:#ccd6df;font-family:eicons;display:inline-block}.elementor-star-rating i{display:inline-block;position:relative;font-style:normal;cursor:default}.elementor-star-rating i:before{content:\"e934\";display:block;font-size:inherit;font-family:inherit;position:absolute;overflow:hidden;color:#f0ad4e;top:0;left:0}.elementor-star-rating .elementor-star-empty:before{content:none}.elementor-star-rating .elementor-star-1:before{width:10%}.elementor-star-rating .elementor-star-2:before{width:20%}.elementor-star-rating .elementor-star-3:before{width:30%}.elementor-star-rating .elementor-star-4:before{width:40%}.elementor-star-rating .elementor-star-5:before{width:50%}.elementor-star-rating .elementor-star-6:before{width:60%}.elementor-star-rating .elementor-star-7:before{width:70%}.elementor-star-rating .elementor-star-8:before{width:80%}.elementor-star-rating .elementor-star-9:before{width:90%}.elementor-star-rating__wrapper{display:flex;align-items:center}.elementor-star-rating__title{margin-right:10px}.elementor-star-rating--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating--align-justify .elementor-star-rating__title{margin-right:auto}@media (max-width:1024px){.elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-tablet--align-justify .elementor-star-rating__title{margin-right:auto}}@media (max-width:767px){.elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper{text-align:right;justify-content:flex-end}.elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper{text-align:left;justify-content:flex-start}.elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper{text-align:center;justify-content:center}.elementor-star-rating-mobile--align-justify .elementor-star-rating__title{margin-right:auto}}.last-star{letter-spacing:0}.elementor--star-style-star_unicode .elementor-star-rating{font-family:Arial,Helvetica,sans-serif}.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before{content:\"★\"}</style>\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"151\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team5-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n															<img width=\"150\" height=\"150\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/team1-1-1.png\" alt=\"\" loading=\"lazy\" />															\n						<i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i><i>&#xE934;</i> 5/5		\n							\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\"\n														Jack Brown\n																						Designer\n			Awards		\n			<h2>Our Doctor Specialist &amp;<br>Experience</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				%\n							Happy Patients\n				0\n				+\n							Team Members\n				0\n				+\n							Year Experience\n				0\n				+\n							Global Awards','Home','','inherit','closed','closed','','59-autosave-v1','','','2023-05-30 08:13:40','2023-05-30 08:13:40','',59,'https://testhospital.in8.cdn-alpha.com/?p=82',0,'revision','',0),(83,1,'2023-05-30 08:30:35','2023-05-30 08:30:35','','Mediq - Health & Medical Elementor Template Kit','','publish','closed','closed','','mediq-health-medical-elementor-template-kit','','','2023-05-30 08:30:35','2023-05-30 08:30:35','',0,'https://testhospital.in8.cdn-alpha.com/?envato_tk_import=mediq-health-medical-elementor-template-kit',0,'envato_tk_import','',0),(84,1,'2023-05-30 08:30:56','2023-05-30 08:30:56','','Kit Styles: Mediq - Health & Medical Elementor Template Kit','','publish','closed','closed','','global-kit-styles-3','','','2023-05-30 12:30:25','2023-05-30 12:30:25','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=global-kit-styles-3',0,'elementor_library','',0),(85,1,'2023-05-30 08:30:56','2023-05-30 08:30:56','','Global Kit Styles','','inherit','closed','closed','','84-revision-v1','','','2023-05-30 08:30:56','2023-05-30 08:30:56','',84,'https://testhospital.in8.cdn-alpha.com/?p=85',0,'revision','',0),(86,1,'2023-05-30 08:30:57','2023-05-30 08:30:57','','Global Kit Styles','','inherit','closed','closed','','84-revision-v1','','','2023-05-30 08:30:57','2023-05-30 08:30:57','',84,'https://testhospital.in8.cdn-alpha.com/?p=86',0,'revision','',0),(87,1,'2023-05-30 08:30:57','2023-05-30 08:30:57','','Kit Styles: Mediq - Health & Medical Elementor Template Kit','','inherit','closed','closed','','84-revision-v1','','','2023-05-30 08:30:57','2023-05-30 08:30:57','',84,'https://testhospital.in8.cdn-alpha.com/?p=87',0,'revision','',0),(88,1,'2023-05-30 08:31:22','2023-05-30 08:31:22','','elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png','','inherit','open','closed','','elements-logo-medical-cross-pharmacy-medicine-lbqr6g-png','','','2023-05-30 08:31:22','2023-05-30 08:31:22','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png',0,'attachment','image/png',0),(89,1,'2023-05-30 08:31:23','2023-05-30 08:31:23','','elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png','','inherit','open','closed','','elements-logo-medical-cross-pharmacy-medicine-lbqr6g-white-png','','','2023-05-30 08:31:23','2023-05-30 08:31:23','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png',0,'attachment','image/png',0),(90,1,'2023-05-30 08:31:23','2023-05-30 08:31:23','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"161\" height=\"50\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\" alt=\"\" loading=\"lazy\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header Section','','publish','closed','closed','','header-section','','','2023-05-30 08:31:25','2023-05-30 08:31:25','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=header-section',0,'elementor_library','',0),(91,1,'2023-05-30 08:31:24','2023-05-30 08:31:24','','curve-dots-2.png','','inherit','open','closed','','curve-dots-2-png','','','2023-05-30 08:31:24','2023-05-30 08:31:24','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png',0,'attachment','image/png',0),(92,1,'2023-05-30 08:31:24','2023-05-30 08:31:24','','young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg','','inherit','open','closed','','young-smiling-receptionist-in-dental-clinic-plpk6tc-jpg','','','2023-05-30 08:31:24','2023-05-30 08:31:24','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/young-smiling-receptionist-in-dental-clinic-PLPK6TC.jpg',0,'attachment','image/jpeg',0),(93,1,'2023-05-30 08:31:24','2023-05-30 08:31:24','','Header Section','','inherit','closed','closed','','90-revision-v1','','','2023-05-30 08:31:24','2023-05-30 08:31:24','',90,'https://testhospital.in8.cdn-alpha.com/?p=93',0,'revision','',0),(94,1,'2023-05-30 08:31:25','2023-05-30 08:31:25','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"161\" height=\"50\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\" alt=\"\" loading=\"lazy\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header Section','','inherit','closed','closed','','90-revision-v1','','','2023-05-30 08:31:25','2023-05-30 08:31:25','',90,'https://testhospital.in8.cdn-alpha.com/?p=94',0,'revision','',0),(95,1,'2023-05-30 08:31:26','2023-05-30 08:31:26','<style>/*! elementor - v3.13.3 - 28-05-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=\"129\" height=\"38\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Footer Section','','publish','closed','closed','','footer-section','','','2023-05-30 08:31:27','2023-05-30 08:31:27','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=footer-section',0,'elementor_library','',0),(96,1,'2023-05-30 08:31:27','2023-05-30 08:31:27','','Footer Section','','inherit','closed','closed','','95-revision-v1','','','2023-05-30 08:31:27','2023-05-30 08:31:27','',95,'https://testhospital.in8.cdn-alpha.com/?p=96',0,'revision','',0),(97,1,'2023-05-30 08:31:27','2023-05-30 08:31:27','<style>/*! elementor - v3.13.3 - 28-05-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=\"129\" height=\"38\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G-white.png\" alt=\"\" loading=\"lazy\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Footer Section','','inherit','closed','closed','','95-revision-v1','','','2023-05-30 08:31:27','2023-05-30 08:31:27','',95,'https://testhospital.in8.cdn-alpha.com/?p=97',0,'revision','',0),(98,1,'2023-05-30 08:31:51','2023-05-30 08:31:51','','doctor-at-hospital-R69SC2W.jpg','','inherit','open','closed','','doctor-at-hospital-r69sc2w-jpg','','','2023-05-30 08:31:51','2023-05-30 08:31:51','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-at-hospital-R69SC2W.jpg',0,'attachment','image/jpeg',0),(99,1,'2023-05-30 08:31:53','2023-05-30 08:31:53','','portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg','','inherit','open','closed','','portrait-of-male-doctor-with-stethoscope-wearing-w-s8ja2bf-slider-jpg','','','2023-05-30 08:31:53','2023-05-30 08:31:53','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.jpg',0,'attachment','image/jpeg',0),(100,1,'2023-05-30 08:31:54','2023-05-30 08:31:54','','portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg','','inherit','open','closed','','portrait-of-smiling-chiropractor-in-eyeglasses-and-sa2d6v6-slider-jpg','','','2023-05-30 08:31:54','2023-05-30 08:31:54','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.jpg',0,'attachment','image/jpeg',0),(101,1,'2023-05-30 08:31:56','2023-05-30 08:31:56','','elements-medical-icon-line-styles-UTQXLZN-1.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-1-png','','','2023-05-30 08:31:56','2023-05-30 08:31:56','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png',0,'attachment','image/png',0),(102,1,'2023-05-30 08:31:56','2023-05-30 08:31:56','','circle-dots-1.png','','inherit','open','closed','','circle-dots-1-png','','','2023-05-30 08:31:56','2023-05-30 08:31:56','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png',0,'attachment','image/png',0),(103,1,'2023-05-30 08:31:57','2023-05-30 08:31:57','','elements-medical-icon-line-styles-UTQXLZN-2.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-2-png','','','2023-05-30 08:31:57','2023-05-30 08:31:57','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png',0,'attachment','image/png',0),(104,1,'2023-05-30 08:31:58','2023-05-30 08:31:58','','elements-medical-icon-line-styles-UTQXLZN-3.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-3-png','','','2023-05-30 08:31:58','2023-05-30 08:31:58','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png',0,'attachment','image/png',0),(105,1,'2023-05-30 08:31:59','2023-05-30 08:31:59','','round-building-CGY4TZ5.jpg','','inherit','open','closed','','round-building-cgy4tz5-jpg','','','2023-05-30 08:31:59','2023-05-30 08:31:59','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg',0,'attachment','image/jpeg',0),(106,1,'2023-05-30 08:31:59','2023-05-30 08:31:59','','portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg','','inherit','open','closed','','portrait-of-female-doctor-with-stethoscope-wearing-725fa62-jpg','','','2023-05-30 08:31:59','2023-05-30 08:31:59','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg',0,'attachment','image/jpeg',0),(107,1,'2023-05-30 08:32:00','2023-05-30 08:32:00','','experience_bg.png','','inherit','open','closed','','experience_bg-png','','','2023-05-30 08:32:00','2023-05-30 08:32:00','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png',0,'attachment','image/png',0),(108,1,'2023-05-30 08:32:01','2023-05-30 08:32:01','','rectangle-dots-1.png','','inherit','open','closed','','rectangle-dots-1-png','','','2023-05-30 08:32:01','2023-05-30 08:32:01','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png',0,'attachment','image/png',0),(109,1,'2023-05-30 08:32:02','2023-05-30 08:32:02','','sign.jpg','','inherit','open','closed','','sign-jpg','','','2023-05-30 08:32:02','2023-05-30 08:32:02','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg',0,'attachment','image/jpeg',0),(110,1,'2023-05-30 08:32:04','2023-05-30 08:32:04','','light-blue-bg.jpg','','inherit','open','closed','','light-blue-bg-jpg','','','2023-05-30 08:32:04','2023-05-30 08:32:04','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/light-blue-bg.jpg',0,'attachment','image/jpeg',0),(111,1,'2023-05-30 08:32:05','2023-05-30 08:32:05','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-1-png','','','2023-05-30 08:32:05','2023-05-30 08:32:05','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png',0,'attachment','image/png',0),(112,1,'2023-05-30 08:32:05','2023-05-30 08:32:05','','circle-dots-3.png','','inherit','open','closed','','circle-dots-3-png','','','2023-05-30 08:32:05','2023-05-30 08:32:05','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png',0,'attachment','image/png',0),(113,1,'2023-05-30 08:32:06','2023-05-30 08:32:06','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-2-png','','','2023-05-30 08:32:06','2023-05-30 08:32:06','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png',0,'attachment','image/png',0),(114,1,'2023-05-30 08:32:07','2023-05-30 08:32:07','','circle-dots-2.png','','inherit','open','closed','','circle-dots-2-png','','','2023-05-30 08:32:07','2023-05-30 08:32:07','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png',0,'attachment','image/png',0),(115,1,'2023-05-30 08:32:07','2023-05-30 08:32:07','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-3-png','','','2023-05-30 08:32:07','2023-05-30 08:32:07','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png',0,'attachment','image/png',0),(116,1,'2023-05-30 08:32:09','2023-05-30 08:32:09','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-4-png','','','2023-05-30 08:32:09','2023-05-30 08:32:09','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png',0,'attachment','image/png',0),(117,1,'2023-05-30 08:32:10','2023-05-30 08:32:10','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-5-png','','','2023-05-30 08:32:10','2023-05-30 08:32:10','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png',0,'attachment','image/png',0),(118,1,'2023-05-30 08:32:11','2023-05-30 08:32:11','','elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png','','inherit','open','closed','','elements-simple-set-healthcare-and-medicine-line-icons-syv3r5-6-png','','','2023-05-30 08:32:11','2023-05-30 08:32:11','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png',0,'attachment','image/png',0),(119,1,'2023-05-30 08:32:13','2023-05-30 08:32:13','','triangle-dots.png','','inherit','open','closed','','triangle-dots-png','','','2023-05-30 08:32:13','2023-05-30 08:32:13','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png',0,'attachment','image/png',0),(120,1,'2023-05-30 08:32:14','2023-05-30 08:32:14','','elements-medical-icon-line-styles-UTQXLZN-4.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-4-png','','','2023-05-30 08:32:14','2023-05-30 08:32:14','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png',0,'attachment','image/png',0),(121,1,'2023-05-30 08:32:15','2023-05-30 08:32:15','','elements-medical-icon-line-styles-UTQXLZN-5.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-5-png','','','2023-05-30 08:32:15','2023-05-30 08:32:15','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png',0,'attachment','image/png',0),(122,1,'2023-05-30 08:32:15','2023-05-30 08:32:15','','elements-medical-icon-line-styles-UTQXLZN-6.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-6-png','','','2023-05-30 08:32:15','2023-05-30 08:32:15','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png',0,'attachment','image/png',0),(123,1,'2023-05-30 08:32:17','2023-05-30 08:32:17','','elements-medical-icon-line-styles-UTQXLZN-7.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-7-png','','','2023-05-30 08:32:17','2023-05-30 08:32:17','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png',0,'attachment','image/png',0),(124,1,'2023-05-30 08:32:18','2023-05-30 08:32:18','','the-medical-team-standing-in-a-hospital-AVQYCPT.jpg','','inherit','open','closed','','the-medical-team-standing-in-a-hospital-avqycpt-jpg','','','2023-05-30 08:32:18','2023-05-30 08:32:18','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg',0,'attachment','image/jpeg',0),(125,1,'2023-05-30 08:32:19','2023-05-30 08:32:19','','rectangle-dots-2.png','','inherit','open','closed','','rectangle-dots-2-png','','','2023-05-30 08:32:19','2023-05-30 08:32:19','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png',0,'attachment','image/png',0),(126,1,'2023-05-30 08:32:20','2023-05-30 08:32:20','','elements-medical-icon-line-styles-UTQXLZN-8.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-8-png','','','2023-05-30 08:32:20','2023-05-30 08:32:20','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png',0,'attachment','image/png',0),(127,1,'2023-05-30 08:32:21','2023-05-30 08:32:21','','elements-medical-icon-line-styles-UTQXLZN-9.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-9-png','','','2023-05-30 08:32:21','2023-05-30 08:32:21','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png',0,'attachment','image/png',0),(128,1,'2023-05-30 08:32:23','2023-05-30 08:32:23','','elements-medical-icon-line-styles-UTQXLZN-10.png','','inherit','open','closed','','elements-medical-icon-line-styles-utqxlzn-10-png','','','2023-05-30 08:32:23','2023-05-30 08:32:23','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png',0,'attachment','image/png',0),(129,1,'2023-05-30 08:32:24','2023-05-30 08:32:24','','women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg','','inherit','open','closed','','women-doctors-standing-in-corridor-on-medical-conf-5jcx2rt-jpg','','','2023-05-30 08:32:24','2023-05-30 08:32:24','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg',0,'attachment','image/jpeg',0),(130,1,'2023-05-30 08:32:25','2023-05-30 08:32:25','','square-dots.png','','inherit','open','closed','','square-dots-png','','','2023-05-30 08:32:25','2023-05-30 08:32:25','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png',0,'attachment','image/png',0),(131,1,'2023-05-30 08:32:25','2023-05-30 08:32:25','','business-woman-MCSQA8D.jpg','','inherit','open','closed','','business-woman-mcsqa8d-jpg','','','2023-05-30 08:32:25','2023-05-30 08:32:25','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg',0,'attachment','image/jpeg',0),(132,1,'2023-05-30 08:32:26','2023-05-30 08:32:26','','elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg','','inherit','open','closed','','elegant-confident-man-doctor-dentist-wearing-lab-c-k94zgcy-jpg','','','2023-05-30 08:32:26','2023-05-30 08:32:26','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg',0,'attachment','image/jpeg',0),(133,1,'2023-05-30 08:32:27','2023-05-30 08:32:27','','accountant-in-office-PHNC7LQ.jpg','','inherit','open','closed','','accountant-in-office-phnc7lq-jpg','','','2023-05-30 08:32:27','2023-05-30 08:32:27','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg',0,'attachment','image/jpeg',0),(134,1,'2023-05-30 08:32:28','2023-05-30 08:32:28','','group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg','','inherit','open','closed','','group-of-doctors-walking-in-corridor-on-medical-co-ea2dvjt-jpg','','','2023-05-30 08:32:28','2023-05-30 08:32:28','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg',0,'attachment','image/jpeg',0),(135,1,'2023-05-30 08:32:31','2023-05-30 08:32:31','','portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg','','inherit','open','closed','','portrait-of-female-doctor-wearing-scrubs-standing-q2qg548-jpg','','','2023-05-30 08:32:31','2023-05-30 08:32:31','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg',0,'attachment','image/jpeg',0),(136,1,'2023-05-30 08:32:31','2023-05-30 08:32:31','','portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg','','inherit','open','closed','','portrait-of-female-doctor-with-stethoscope-wearing-akgkffq-jpg','','','2023-05-30 08:32:31','2023-05-30 08:32:31','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg',0,'attachment','image/jpeg',0),(137,1,'2023-05-30 08:32:32','2023-05-30 08:32:32','','portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg','','inherit','open','closed','','portrait-of-male-doctor-with-stethoscope-wearing-w-s8ja2bf-jpg','','','2023-05-30 08:32:32','2023-05-30 08:32:32','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg',0,'attachment','image/jpeg',0),(138,1,'2023-05-30 08:32:33','2023-05-30 08:32:33','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2023-05-30 08:32:33','2023-05-30 08:32:33','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/placeholder-1.png',0,'attachment','image/png',0),(139,1,'2023-05-30 08:32:33','2023-05-30 08:32:33','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>','Home','','publish','closed','closed','','home','','','2023-05-30 08:32:36','2023-05-30 08:32:36','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(140,1,'2023-05-30 08:32:34','2023-05-30 08:32:34','','Home','','inherit','closed','closed','','139-revision-v1','','','2023-05-30 08:32:34','2023-05-30 08:32:34','',139,'https://testhospital.in8.cdn-alpha.com/?p=140',0,'revision','',0),(141,1,'2023-05-30 08:32:36','2023-05-30 08:32:36','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-05-30 08:32:36','2023-05-30 08:32:36','',139,'https://testhospital.in8.cdn-alpha.com/?p=141',0,'revision','',0),(142,1,'2023-05-30 08:33:30','2023-05-30 08:33:30','<!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>','Intro Section','','publish','closed','closed','','intro-section','','','2023-05-30 08:33:32','2023-05-30 08:33:32','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=intro-section',0,'elementor_library','',0),(143,1,'2023-05-30 08:33:31','2023-05-30 08:33:31','','Intro Section','','inherit','closed','closed','','142-revision-v1','','','2023-05-30 08:33:31','2023-05-30 08:33:31','',142,'https://testhospital.in8.cdn-alpha.com/?p=143',0,'revision','',0),(144,1,'2023-05-30 08:33:32','2023-05-30 08:33:32','<!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>','Intro Section','','inherit','closed','closed','','142-revision-v1','','','2023-05-30 08:33:32','2023-05-30 08:33:32','',142,'https://testhospital.in8.cdn-alpha.com/?p=144',0,'revision','',0),(145,1,'2023-05-30 08:33:35','2023-05-30 08:33:35','<style>/*! elementor - v3.13.3 - 28-05-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=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>','About Section','','publish','closed','closed','','about-section','','','2023-05-30 08:33:36','2023-05-30 08:33:36','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=about-section',0,'elementor_library','',0),(146,1,'2023-05-30 08:33:36','2023-05-30 08:33:36','','About Section','','inherit','closed','closed','','145-revision-v1','','','2023-05-30 08:33:36','2023-05-30 08:33:36','',145,'https://testhospital.in8.cdn-alpha.com/?p=146',0,'revision','',0),(147,1,'2023-05-30 08:33:36','2023-05-30 08:33:36','<style>/*! elementor - v3.13.3 - 28-05-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=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>','About Section','','inherit','closed','closed','','145-revision-v1','','','2023-05-30 08:33:36','2023-05-30 08:33:36','',145,'https://testhospital.in8.cdn-alpha.com/?p=147',0,'revision','',0),(148,1,'2023-05-30 08:33:41','2023-05-30 08:33:41','<style>/*! elementor - v3.13.3 - 28-05-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 Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />','Services Section','','publish','closed','closed','','services-section','','','2023-05-30 08:33:43','2023-05-30 08:33:43','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=services-section',0,'elementor_library','',0),(149,1,'2023-05-30 08:33:42','2023-05-30 08:33:42','','Services Section','','inherit','closed','closed','','148-revision-v1','','','2023-05-30 08:33:42','2023-05-30 08:33:42','',148,'https://testhospital.in8.cdn-alpha.com/?p=149',0,'revision','',0),(150,1,'2023-05-30 08:33:43','2023-05-30 08:33:43','<style>/*! elementor - v3.13.3 - 28-05-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 Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />','Services Section','','inherit','closed','closed','','148-revision-v1','','','2023-05-30 08:33:43','2023-05-30 08:33:43','',148,'https://testhospital.in8.cdn-alpha.com/?p=150',0,'revision','',0),(151,1,'2023-05-30 08:34:02','2023-05-30 08:34:02','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>','Hero Image Section','','publish','closed','closed','','hero-image-section','','','2023-05-30 08:34:04','2023-05-30 08:34:04','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=hero-image-section',0,'elementor_library','',0),(152,1,'2023-05-30 08:34:03','2023-05-30 08:34:03','','Hero Image Section','','inherit','closed','closed','','151-revision-v1','','','2023-05-30 08:34:03','2023-05-30 08:34:03','',151,'https://testhospital.in8.cdn-alpha.com/?p=152',0,'revision','',0),(153,1,'2023-05-30 08:34:04','2023-05-30 08:34:04','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>','Hero Image Section','','inherit','closed','closed','','151-revision-v1','','','2023-05-30 08:34:04','2023-05-30 08:34:04','',151,'https://testhospital.in8.cdn-alpha.com/?p=153',0,'revision','',0),(154,1,'2023-05-30 08:34:15','2023-05-30 08:34:15','<style>/*! elementor - v3.13.3 - 28-05-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>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />','Fun Facts Section','','publish','closed','closed','','fun-facts-section','','','2023-05-30 08:34:17','2023-05-30 08:34:17','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=fun-facts-section',0,'elementor_library','',0),(155,1,'2023-05-30 08:34:16','2023-05-30 08:34:16','','Fun Facts Section','','inherit','closed','closed','','154-revision-v1','','','2023-05-30 08:34:16','2023-05-30 08:34:16','',154,'https://testhospital.in8.cdn-alpha.com/?p=155',0,'revision','',0),(156,1,'2023-05-30 08:34:17','2023-05-30 08:34:17','<style>/*! elementor - v3.13.3 - 28-05-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>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />','Fun Facts Section','','inherit','closed','closed','','154-revision-v1','','','2023-05-30 08:34:17','2023-05-30 08:34:17','',154,'https://testhospital.in8.cdn-alpha.com/?p=156',0,'revision','',0),(157,1,'2023-05-30 08:34:28','2023-05-30 08:34:28','','Metform &#8211; Book An Appointment','','publish','closed','closed','','metform-book-an-appointment','','','2023-05-30 08:34:30','2023-05-30 08:34:30','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=metform-book-an-appointment',0,'elementor_library','',0),(158,1,'2023-05-30 08:34:29','2023-05-30 08:34:29','<style>/*! elementor - v3.13.3 - 28-05-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=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>','Book An Appointment Section','','publish','closed','closed','','book-an-appointment-section','','','2023-05-30 08:34:31','2023-05-30 08:34:31','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=book-an-appointment-section',0,'elementor_library','',0),(159,1,'2023-05-30 08:34:29','2023-05-30 08:34:29','','female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg','','inherit','open','closed','','female-veterinary-surgeon-studying-animal-xray-at-m9epgdk-jpg','','','2023-05-30 08:34:29','2023-05-30 08:34:29','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg',0,'attachment','image/jpeg',0),(160,1,'2023-05-30 08:34:29','2023-05-30 08:34:29','','Metform &#8211; Book An Appointment','','inherit','closed','closed','','157-revision-v1','','','2023-05-30 08:34:29','2023-05-30 08:34:29','',157,'https://testhospital.in8.cdn-alpha.com/?p=160',0,'revision','',0),(161,1,'2023-05-30 08:34:30','2023-05-30 08:34:30','','Metform &#8211; Book An Appointment','','inherit','closed','closed','','157-revision-v1','','','2023-05-30 08:34:30','2023-05-30 08:34:30','',157,'https://testhospital.in8.cdn-alpha.com/?p=161',0,'revision','',0),(162,1,'2023-05-30 08:34:30','2023-05-30 08:34:30','','group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg','','inherit','open','closed','','group-of-doctors-looking-at-x-ray-on-medical-confe-ethl3u5-jpg','','','2023-05-30 08:34:30','2023-05-30 08:34:30','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg',0,'attachment','image/jpeg',0),(163,1,'2023-05-30 08:34:30','2023-05-30 08:34:30','','Book An Appointment Section','','inherit','closed','closed','','158-revision-v1','','','2023-05-30 08:34:30','2023-05-30 08:34:30','',158,'https://testhospital.in8.cdn-alpha.com/?p=163',0,'revision','',0),(164,1,'2023-05-30 08:34:31','2023-05-30 08:34:31','<style>/*! elementor - v3.13.3 - 28-05-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=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>','Book An Appointment Section','','inherit','closed','closed','','158-revision-v1','','','2023-05-30 08:34:31','2023-05-30 08:34:31','',158,'https://testhospital.in8.cdn-alpha.com/?p=164',0,'revision','',0),(165,1,'2023-05-30 08:34:31','2023-05-30 08:34:31','','group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg','','inherit','open','closed','','group-of-doctors-standing-in-corridor-on-medical-c-5nqgmqb-jpg','','','2023-05-30 08:34:31','2023-05-30 08:34:31','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg',0,'attachment','image/jpeg',0),(166,1,'2023-05-30 08:34:32','2023-05-30 08:34:32','','cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg','','inherit','open','closed','','cheerful-young-clinic-staff-looking-at-camera-4x8yfru-jpg','','','2023-05-30 08:34:32','2023-05-30 08:34:32','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg',0,'attachment','image/jpeg',0),(167,1,'2023-05-30 08:34:33','2023-05-30 08:34:33','','advice-of-doctor-GNDB7X7.jpg','','inherit','open','closed','','advice-of-doctor-gndb7x7-jpg','','','2023-05-30 08:34:33','2023-05-30 08:34:33','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/advice-of-doctor-GNDB7X7.jpg',0,'attachment','image/jpeg',0),(168,1,'2023-05-30 08:34:35','2023-05-30 08:34:35','<style>/*! elementor - v3.13.3 - 28-05-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 Gallery</h2>		\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_0\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_0\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE1OSIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9mZW1hbGUtdmV0ZXJpbmFyeS1zdXJnZW9uLXN0dWR5aW5nLWFuaW1hbC14cmF5LWF0LU05RVBHREsuanBnIiwic2xpZGVzaG93IjoiNGUzNGUzNmIifQ%3D%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            The heart of your healthcare\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_1\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_1\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2MiIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9ncm91cC1vZi1kb2N0b3JzLWxvb2tpbmctYXQteC1yYXktb24tbWVkaWNhbC1jb25mZS1FVEhMM1U1LmpwZyIsInNsaWRlc2hvdyI6IjRlMzRlMzZiIn0%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Investing in Quality Care\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_2\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_2\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NSIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9ncm91cC1vZi1kb2N0b3JzLXN0YW5kaW5nLWluLWNvcnJpZG9yLW9uLW1lZGljYWwtYy01TlFHTVFCLmpwZyIsInNsaWRlc2hvdyI6IjRlMzRlMzZiIn0%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Genius in Healthcare\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_3\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_3\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NiIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9jaGVlcmZ1bC15b3VuZy1jbGluaWMtc3RhZmYtbG9va2luZy1hdC1jYW1lcmEtNFg4WUZSVS5qcGciLCJzbGlkZXNob3ciOiI0ZTM0ZTM2YiJ9\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            We’re in this together\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_4\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_4\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/advice-of-doctor-GNDB7X7.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"advice-of-doctor-GNDB7X7.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NyIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9hZHZpY2Utb2YtZG9jdG9yLUdOREI3WDcuanBnIiwic2xpZGVzaG93IjoiNGUzNGUzNmIifQ%3D%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/advice-of-doctor-GNDB7X7.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Care close to home\n                </label>','Gallery Section','','publish','closed','closed','','gallery-section','','','2023-05-30 08:34:36','2023-05-30 08:34:36','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=gallery-section',0,'elementor_library','',0),(169,1,'2023-05-30 08:34:35','2023-05-30 08:34:35','<style>/*! elementor - v3.13.3 - 28-05-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>Recent News of Mediq Healthcare</h2>','News Section','','publish','closed','closed','','news-section','','','2023-05-30 08:34:37','2023-05-30 08:34:37','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=news-section',0,'elementor_library','',0),(170,1,'2023-05-30 08:34:35','2023-05-30 08:34:35','','Gallery Section','','inherit','closed','closed','','168-revision-v1','','','2023-05-30 08:34:35','2023-05-30 08:34:35','',168,'https://testhospital.in8.cdn-alpha.com/?p=170',0,'revision','',0),(171,1,'2023-05-30 08:34:36','2023-05-30 08:34:36','<style>/*! elementor - v3.13.3 - 28-05-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 Gallery</h2>		\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_0\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_0\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE1OSIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9mZW1hbGUtdmV0ZXJpbmFyeS1zdXJnZW9uLXN0dWR5aW5nLWFuaW1hbC14cmF5LWF0LU05RVBHREsuanBnIiwic2xpZGVzaG93IjoiNGUzNGUzNmIifQ%3D%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/female-veterinary-surgeon-studying-animal-xray-at-M9EPGDK.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            The heart of your healthcare\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_1\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_1\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2MiIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9ncm91cC1vZi1kb2N0b3JzLWxvb2tpbmctYXQteC1yYXktb24tbWVkaWNhbC1jb25mZS1FVEhMM1U1LmpwZyIsInNsaWRlc2hvdyI6IjRlMzRlMzZiIn0%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-looking-at-x-ray-on-medical-confe-ETHL3U5.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Investing in Quality Care\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_2\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_2\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NSIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9ncm91cC1vZi1kb2N0b3JzLXN0YW5kaW5nLWluLWNvcnJpZG9yLW9uLW1lZGljYWwtYy01TlFHTVFCLmpwZyIsInNsaWRlc2hvdyI6IjRlMzRlMzZiIn0%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-standing-in-corridor-on-medical-c-5NQGMQB.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Genius in Healthcare\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_3\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_3\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NiIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9jaGVlcmZ1bC15b3VuZy1jbGluaWMtc3RhZmYtbG9va2luZy1hdC1jYW1lcmEtNFg4WUZSVS5qcGciLCJzbGlkZXNob3ciOiI0ZTM0ZTM2YiJ9\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/cheerful-young-clinic-staff-looking-at-camera-4X8YFRU.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            We’re in this together\n                </label>\n                            <input type=\"radio\" name=\"ekit_ia_4e34e36b\" id=\"ekit_ia_4e34e36b_4\"  hidden>\n                <label for=\"ekit_ia_4e34e36b_4\" style=\"background-image: url(https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/advice-of-doctor-GNDB7X7.jpg)\" >\n                                                        <a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"4e34e36b\" data-elementor-lightbox-title=\"advice-of-doctor-GNDB7X7.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjE2NyIsInVybCI6Imh0dHBzOlwvXC90ZXN0aG9zcGl0YWwuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA1XC9hZHZpY2Utb2YtZG9jdG9yLUdOREI3WDcuanBnIiwic2xpZGVzaG93IjoiNGUzNGUzNmIifQ%3D%3D\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/advice-of-doctor-GNDB7X7.jpg\" aria-label=\"pupup-button\">\n                                                                </a>\n                                                                                <a >\n                                                                </a>\n                            Care close to home\n                </label>','Gallery Section','','inherit','closed','closed','','168-revision-v1','','','2023-05-30 08:34:36','2023-05-30 08:34:36','',168,'https://testhospital.in8.cdn-alpha.com/?p=171',0,'revision','',0),(172,1,'2023-05-30 08:34:36','2023-05-30 08:34:36','','News Section','','inherit','closed','closed','','169-revision-v1','','','2023-05-30 08:34:36','2023-05-30 08:34:36','',169,'https://testhospital.in8.cdn-alpha.com/?p=172',0,'revision','',0),(173,1,'2023-05-30 08:34:37','2023-05-30 08:34:37','<style>/*! elementor - v3.13.3 - 28-05-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>Recent News of Mediq Healthcare</h2>','News Section','','inherit','closed','closed','','169-revision-v1','','','2023-05-30 08:34:37','2023-05-30 08:34:37','',169,'https://testhospital.in8.cdn-alpha.com/?p=173',0,'revision','',0),(174,1,'2023-05-30 08:34:37','2023-05-30 08:34:37','<style>/*! elementor - v3.13.3 - 28-05-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><h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />','Testimonials Section','','publish','closed','closed','','testimonials-section','','','2023-05-30 08:34:39','2023-05-30 08:34:39','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=testimonials-section',0,'elementor_library','',0),(175,1,'2023-05-30 08:34:37','2023-05-30 08:34:37','<style>/*! elementor - v3.13.3 - 28-05-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=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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 Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>','Team Section','','publish','closed','closed','','team-section','','','2023-05-30 08:34:39','2023-05-30 08:34:39','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=team-section',0,'elementor_library','',0),(176,1,'2023-05-30 08:34:39','2023-05-30 08:34:39','<style>/*! elementor - v3.13.3 - 28-05-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>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />','Health Steps Section','','publish','closed','closed','','health-steps-section','','','2023-05-30 08:34:40','2023-05-30 08:34:40','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=health-steps-section',0,'elementor_library','',0),(177,1,'2023-05-30 08:34:38','2023-05-30 08:34:38','','Testimonials Section','','inherit','closed','closed','','174-revision-v1','','','2023-05-30 08:34:38','2023-05-30 08:34:38','',174,'https://testhospital.in8.cdn-alpha.com/?p=177',0,'revision','',0),(178,1,'2023-05-30 08:34:39','2023-05-30 08:34:39','<style>/*! elementor - v3.13.3 - 28-05-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><h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />','Testimonials Section','','inherit','closed','closed','','174-revision-v1','','','2023-05-30 08:34:39','2023-05-30 08:34:39','',174,'https://testhospital.in8.cdn-alpha.com/?p=178',0,'revision','',0),(179,1,'2023-05-30 08:34:38','2023-05-30 08:34:38','','Team Section','','inherit','closed','closed','','175-revision-v1','','','2023-05-30 08:34:38','2023-05-30 08:34:38','',175,'https://testhospital.in8.cdn-alpha.com/?p=179',0,'revision','',0),(180,1,'2023-05-30 08:34:39','2023-05-30 08:34:39','<style>/*! elementor - v3.13.3 - 28-05-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=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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 Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>','Team Section','','inherit','closed','closed','','175-revision-v1','','','2023-05-30 08:34:39','2023-05-30 08:34:39','',175,'https://testhospital.in8.cdn-alpha.com/?p=180',0,'revision','',0),(181,1,'2023-05-30 08:34:39','2023-05-30 08:34:39','','Health Steps Section','','inherit','closed','closed','','176-revision-v1','','','2023-05-30 08:34:39','2023-05-30 08:34:39','',176,'https://testhospital.in8.cdn-alpha.com/?p=181',0,'revision','',0),(182,1,'2023-05-30 08:34:40','2023-05-30 08:34:40','<style>/*! elementor - v3.13.3 - 28-05-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>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />','Health Steps Section','','inherit','closed','closed','','176-revision-v1','','','2023-05-30 08:34:40','2023-05-30 08:34:40','',176,'https://testhospital.in8.cdn-alpha.com/?p=182',0,'revision','',0),(183,1,'2023-05-30 08:34:45','2023-05-30 08:34:45','<style>/*! elementor - v3.13.3 - 28-05-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=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />','Services Section 2','','publish','closed','closed','','services-section-2','','','2023-05-30 08:34:46','2023-05-30 08:34:46','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=services-section-2',0,'elementor_library','',0),(184,1,'2023-05-30 08:34:45','2023-05-30 08:34:45','','Services Section 2','','inherit','closed','closed','','183-revision-v1','','','2023-05-30 08:34:45','2023-05-30 08:34:45','',183,'https://testhospital.in8.cdn-alpha.com/?p=184',0,'revision','',0),(185,1,'2023-05-30 08:34:46','2023-05-30 08:34:46','<style>/*! elementor - v3.13.3 - 28-05-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=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />','Services Section 2','','inherit','closed','closed','','183-revision-v1','','','2023-05-30 08:34:46','2023-05-30 08:34:46','',183,'https://testhospital.in8.cdn-alpha.com/?p=185',0,'revision','',0),(186,1,'2023-05-30 08:35:02','2023-05-30 08:35:02','','Metform &#8211; Contact','','publish','closed','closed','','metform-contact','','','2023-05-30 08:35:03','2023-05-30 08:35:03','',0,'https://testhospital.in8.cdn-alpha.com/?elementor_library=metform-contact',0,'elementor_library','',0),(187,1,'2023-05-30 08:35:03','2023-05-30 08:35:03','','Metform &#8211; Contact','','inherit','closed','closed','','186-revision-v1','','','2023-05-30 08:35:03','2023-05-30 08:35:03','',186,'https://testhospital.in8.cdn-alpha.com/?p=187',0,'revision','',0),(188,1,'2023-05-30 08:35:03','2023-05-30 08:35:03','','Metform &#8211; Contact','','inherit','closed','closed','','186-revision-v1','','','2023-05-30 08:35:03','2023-05-30 08:35:03','',186,'https://testhospital.in8.cdn-alpha.com/?p=188',0,'revision','',0),(189,1,'2023-05-30 08:35:43','2023-05-30 08:35:43','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','publish','closed','closed','','header','','','2023-05-30 08:51:27','2023-05-30 08:51:27','',0,'https://testhospital.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=189',0,'elementor-hf','',0),(190,1,'2023-05-30 08:35:43','2023-05-30 08:35:43','','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:35:43','2023-05-30 08:35:43','',189,'https://testhospital.in8.cdn-alpha.com/?p=190',0,'revision','',0),(192,1,'2023-05-30 08:38:16','2023-05-30 08:38:16','','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:38:16','2023-05-30 08:38:16','',189,'https://testhospital.in8.cdn-alpha.com/?p=192',0,'revision','',0),(193,1,'2023-05-30 08:38:17','2023-05-30 08:38:17','','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:38:17','2023-05-30 08:38:17','',189,'https://testhospital.in8.cdn-alpha.com/?p=193',0,'revision','',0),(194,1,'2023-05-30 08:38:19','2023-05-30 08:38:19','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:38:19','2023-05-30 08:38:19','',189,'https://testhospital.in8.cdn-alpha.com/?p=194',0,'revision','',0),(196,1,'2023-05-30 08:39:34','2023-05-30 08:39:34','','NMH logo 5-02 (1)','','inherit','open','closed','','nmh-logo-5-02-1-2','','','2023-05-30 08:39:34','2023-05-30 08:39:34','',189,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png',0,'attachment','image/png',0),(197,1,'2023-05-30 08:40:59','2023-05-30 08:40:59','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:40:59','2023-05-30 08:40:59','',189,'https://testhospital.in8.cdn-alpha.com/?p=197',0,'revision','',0),(198,1,'2023-05-30 08:41:00','2023-05-30 08:41:00','<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<style>/*! elementor - v3.13.3 - 28-05-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=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:41:00','2023-05-30 08:41:00','',189,'https://testhospital.in8.cdn-alpha.com/?p=198',0,'revision','',0),(199,1,'2023-05-30 08:41:01','2023-05-30 08:41:01','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>','Header','','inherit','closed','closed','','189-revision-v1','','','2023-05-30 08:41:01','2023-05-30 08:41:01','',189,'https://testhospital.in8.cdn-alpha.com/?p=199',0,'revision','',0),(200,1,'2023-05-30 08:41:22','2023-05-30 08:41:22','<style>/*! elementor - v3.13.3 - 28-05-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=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Footer','','publish','closed','closed','','footer','','','2023-05-30 08:50:53','2023-05-30 08:50:53','',0,'https://testhospital.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=200',0,'elementor-hf','',0),(201,1,'2023-05-30 08:41:22','2023-05-30 08:41:22','','Footer','','inherit','closed','closed','','200-revision-v1','','','2023-05-30 08:41:22','2023-05-30 08:41:22','',200,'https://testhospital.in8.cdn-alpha.com/?p=201',0,'revision','',0),(203,1,'2023-05-30 08:50:52','2023-05-30 08:50:52','','Footer','','inherit','closed','closed','','200-revision-v1','','','2023-05-30 08:50:52','2023-05-30 08:50:52','',200,'https://testhospital.in8.cdn-alpha.com/?p=203',0,'revision','',0),(204,1,'2023-05-30 08:50:53','2023-05-30 08:50:53','','Footer','','inherit','closed','closed','','200-revision-v1','','','2023-05-30 08:50:53','2023-05-30 08:50:53','',200,'https://testhospital.in8.cdn-alpha.com/?p=204',0,'revision','',0),(205,1,'2023-05-30 08:50:53','2023-05-30 08:50:53','<style>/*! elementor - v3.13.3 - 28-05-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=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-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><h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Footer','','inherit','closed','closed','','200-revision-v1','','','2023-05-30 08:50:53','2023-05-30 08:50:53','',200,'https://testhospital.in8.cdn-alpha.com/?p=205',0,'revision','',0),(206,1,'2023-05-30 08:52:16','2023-05-30 08:52:16','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h1>Exceptional Care Every Patient Every Day</h1>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','publish','closed','closed','','home','','','2023-05-30 13:11:25','2023-05-30 13:11:25','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=206',0,'page','',0),(207,1,'2023-05-30 08:52:16','2023-05-30 08:52:16','','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 08:52:16','2023-05-30 08:52:16','',206,'https://testhospital.in8.cdn-alpha.com/?p=207',0,'revision','',0),(209,1,'2023-05-30 09:21:49','2023-05-30 09:21:49','','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:21:49','2023-05-30 09:21:49','',206,'https://testhospital.in8.cdn-alpha.com/?p=209',0,'revision','',0),(210,1,'2023-05-30 09:21:50','2023-05-30 09:21:50','','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:21:50','2023-05-30 09:21:50','',206,'https://testhospital.in8.cdn-alpha.com/?p=210',0,'revision','',0),(211,1,'2023-05-30 09:21:51','2023-05-30 09:21:51','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:21:51','2023-05-30 09:21:51','',206,'https://testhospital.in8.cdn-alpha.com/?p=211',0,'revision','',0),(213,1,'2023-05-30 09:32:26','2023-05-30 09:32:26','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:32:26','2023-05-30 09:32:26','',206,'https://testhospital.in8.cdn-alpha.com/?p=213',0,'revision','',0),(214,1,'2023-05-30 09:32:27','2023-05-30 09:32:27','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:32:27','2023-05-30 09:32:27','',206,'https://testhospital.in8.cdn-alpha.com/?p=214',0,'revision','',0),(215,1,'2023-05-30 09:32:28','2023-05-30 09:32:28','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 09:32:28','2023-05-30 09:32:28','',206,'https://testhospital.in8.cdn-alpha.com/?p=215',0,'revision','',0),(217,1,'2023-05-30 10:07:53','2023-05-30 10:07:53','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:07:53','2023-05-30 10:07:53','',206,'https://testhospital.in8.cdn-alpha.com/?p=217',0,'revision','',0),(218,1,'2023-05-30 10:07:54','2023-05-30 10:07:54','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<a href=\"#\" role=\"button\">\n						Book Now\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		Copyright © 2021 Mediq All rights reserved','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:07:54','2023-05-30 10:07:54','',206,'https://testhospital.in8.cdn-alpha.com/?p=218',0,'revision','',0),(219,1,'2023-05-30 10:07:55','2023-05-30 10:07:55','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:07:55','2023-05-30 10:07:55','',206,'https://testhospital.in8.cdn-alpha.com/?p=219',0,'revision','',0),(220,1,'2023-05-30 10:56:10','2023-05-30 10:56:10','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:56:10','2023-05-30 10:56:10','',206,'https://testhospital.in8.cdn-alpha.com/?p=220',0,'revision','',0),(221,1,'2023-05-30 10:56:10','2023-05-30 10:56:10','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:56:10','2023-05-30 10:56:10','',206,'https://testhospital.in8.cdn-alpha.com/?p=221',0,'revision','',0),(222,1,'2023-05-30 10:56:12','2023-05-30 10:56:12','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 10:56:12','2023-05-30 10:56:12','',206,'https://testhospital.in8.cdn-alpha.com/?p=222',0,'revision','',0),(224,1,'2023-05-30 11:57:16','2023-05-30 11:57:16','','50 years copy (1)','','inherit','open','closed','','50-years-copy-1','','','2023-05-30 11:57:16','2023-05-30 11:57:16','',206,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png',0,'attachment','image/png',0),(225,1,'2023-05-30 12:03:16','2023-05-30 12:03:16','','About Us','','publish','closed','closed','','about-us','','','2023-05-30 12:03:16','2023-05-30 12:03:16','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=225',0,'page','',0),(226,1,'2023-05-30 12:03:16','2023-05-30 12:03:16','','About Us','','inherit','closed','closed','','225-revision-v1','','','2023-05-30 12:03:16','2023-05-30 12:03:16','',225,'https://testhospital.in8.cdn-alpha.com/?p=226',0,'revision','',0),(227,1,'2023-05-30 12:04:41','2023-05-30 12:04:41','','Specialities','','publish','closed','closed','','specialities','','','2023-05-30 12:04:41','2023-05-30 12:04:41','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=227',0,'page','',0),(228,1,'2023-05-30 12:04:41','2023-05-30 12:04:41','','Specialities','','inherit','closed','closed','','227-revision-v1','','','2023-05-30 12:04:41','2023-05-30 12:04:41','',227,'https://testhospital.in8.cdn-alpha.com/?p=228',0,'revision','',0),(229,1,'2023-05-30 12:05:16','2023-05-30 12:05:16','','Facilities','','publish','closed','closed','','facilities','','','2023-05-30 12:05:16','2023-05-30 12:05:16','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=229',0,'page','',0),(230,1,'2023-05-30 12:05:16','2023-05-30 12:05:16','','Facilities','','inherit','closed','closed','','229-revision-v1','','','2023-05-30 12:05:16','2023-05-30 12:05:16','',229,'https://testhospital.in8.cdn-alpha.com/?p=230',0,'revision','',0),(231,1,'2023-05-30 12:05:40','2023-05-30 12:05:40','','Career','','publish','closed','closed','','career','','','2023-05-30 12:05:40','2023-05-30 12:05:40','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=231',0,'page','',0),(232,1,'2023-05-30 12:05:40','2023-05-30 12:05:40','','Career','','inherit','closed','closed','','231-revision-v1','','','2023-05-30 12:05:40','2023-05-30 12:05:40','',231,'https://testhospital.in8.cdn-alpha.com/?p=232',0,'revision','',0),(233,1,'2023-05-30 12:05:57','2023-05-30 12:05:57','','Contact Us','','publish','closed','closed','','contact-us','','','2023-05-30 12:05:57','2023-05-30 12:05:57','',0,'https://testhospital.in8.cdn-alpha.com/?page_id=233',0,'page','',0),(234,1,'2023-05-30 12:05:57','2023-05-30 12:05:57','','Contact Us','','inherit','closed','closed','','233-revision-v1','','','2023-05-30 12:05:57','2023-05-30 12:05:57','',233,'https://testhospital.in8.cdn-alpha.com/?p=234',0,'revision','',0),(235,1,'2023-05-30 12:06:58','2023-05-30 12:06:58',' ','','','publish','closed','closed','','235','','','2023-05-30 12:06:58','2023-05-30 12:06:58','',0,'https://testhospital.in8.cdn-alpha.com/?p=235',1,'nav_menu_item','',0),(236,1,'2023-05-30 12:06:58','2023-05-30 12:06:58',' ','','','publish','closed','closed','','236','','','2023-05-30 12:06:58','2023-05-30 12:06:58','',0,'https://testhospital.in8.cdn-alpha.com/?p=236',2,'nav_menu_item','',0),(237,1,'2023-05-30 12:06:59','2023-05-30 12:06:59',' ','','','publish','closed','closed','','237','','','2023-05-30 12:06:59','2023-05-30 12:06:59','',0,'https://testhospital.in8.cdn-alpha.com/?p=237',5,'nav_menu_item','',0),(238,1,'2023-05-30 12:06:59','2023-05-30 12:06:59',' ','','','publish','closed','closed','','238','','','2023-05-30 12:06:59','2023-05-30 12:06:59','',0,'https://testhospital.in8.cdn-alpha.com/?p=238',6,'nav_menu_item','',0),(239,1,'2023-05-30 12:06:59','2023-05-30 12:06:59',' ','','','publish','closed','closed','','239','','','2023-05-30 12:06:59','2023-05-30 12:06:59','',0,'https://testhospital.in8.cdn-alpha.com/?p=239',4,'nav_menu_item','',0),(240,1,'2023-05-30 12:06:59','2023-05-30 12:06:59',' ','','','publish','closed','closed','','240','','','2023-05-30 12:06:59','2023-05-30 12:06:59','',0,'https://testhospital.in8.cdn-alpha.com/?p=240',3,'nav_menu_item','',0),(241,1,'2023-05-30 12:07:09','2023-05-30 12:07:09','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:07:09','2023-05-30 12:07:09','',206,'https://testhospital.in8.cdn-alpha.com/?p=241',0,'revision','',0),(242,1,'2023-05-30 12:07:10','2023-05-30 12:07:10','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:07:10','2023-05-30 12:07:10','',206,'https://testhospital.in8.cdn-alpha.com/?p=242',0,'revision','',0),(243,1,'2023-05-30 12:07:12','2023-05-30 12:07:12','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:07:12','2023-05-30 12:07:12','',206,'https://testhospital.in8.cdn-alpha.com/?p=243',0,'revision','',0),(245,1,'2023-05-30 12:09:02','2023-05-30 12:09:02','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:09:02','2023-05-30 12:09:02','',206,'https://testhospital.in8.cdn-alpha.com/?p=245',0,'revision','',0),(246,1,'2023-05-30 12:09:02','2023-05-30 12:09:02','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:09:02','2023-05-30 12:09:02','',206,'https://testhospital.in8.cdn-alpha.com/?p=246',0,'revision','',0),(247,1,'2023-05-30 12:09:04','2023-05-30 12:09:04','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"161\" height=\"50\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:09:04','2023-05-30 12:09:04','',206,'https://testhospital.in8.cdn-alpha.com/?p=247',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (249,1,'2023-05-30 12:17:16','2023-05-30 12:17:16','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"161\" height=\"50\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:17:16','2023-05-30 12:17:16','',206,'https://testhospital.in8.cdn-alpha.com/?p=249',0,'revision','',0),(250,1,'2023-05-30 12:17:16','2023-05-30 12:17:16','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"161\" height=\"50\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-logo-medical-cross-pharmacy-medicine-LBQR6G.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:17:16','2023-05-30 12:17:16','',206,'https://testhospital.in8.cdn-alpha.com/?p=250',0,'revision','',0),(251,1,'2023-05-30 12:17:18','2023-05-30 12:17:18','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:17:18','2023-05-30 12:17:18','',206,'https://testhospital.in8.cdn-alpha.com/?p=251',0,'revision','',0),(253,1,'2023-05-30 12:26:12','2023-05-30 12:26:12','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:26:12','2023-05-30 12:26:12','',206,'https://testhospital.in8.cdn-alpha.com/?p=253',0,'revision','',0),(254,1,'2023-05-30 12:26:13','2023-05-30 12:26:13','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Our Mediq Healthcare Clinic</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appintments & Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>+88 (0) 123 456 789</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Clients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n			<h2>Recent News of Mediq Healthcare</h2>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										121 Kingt Melbourne VIC 3000, Australia\n									</li>\n								<li>\n											<a href=\"#\">\n										info@example.com\n											</a>\n									</li>\n								<li>\n										888-123-4587\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:26:13','2023-05-30 12:26:13','',206,'https://testhospital.in8.cdn-alpha.com/?p=254',0,'revision','',0),(255,1,'2023-05-30 12:26:14','2023-05-30 12:26:14','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 12:26:14','2023-05-30 12:26:14','',206,'https://testhospital.in8.cdn-alpha.com/?p=255',0,'revision','',0),(256,1,'2023-05-30 12:30:11','2023-05-30 12:30:11','','NMH logo 5-02','','inherit','open','closed','','nmh-logo-5-02','','','2023-05-30 12:30:11','2023-05-30 12:30:11','',84,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02.png',0,'attachment','image/png',0),(257,1,'2023-05-30 12:30:23','2023-05-30 12:30:23','','Kit Styles: Mediq - Health & Medical Elementor Template Kit','','inherit','closed','closed','','84-revision-v1','','','2023-05-30 12:30:23','2023-05-30 12:30:23','',84,'https://testhospital.in8.cdn-alpha.com/?p=257',0,'revision','',0),(259,1,'2023-05-30 13:08:42','2023-05-30 13:08:42','','portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider','','inherit','open','closed','','portrait-of-smiling-chiropractor-in-eyeglasses-and-sa2d6v6-slider','','','2023-05-30 13:08:42','2023-05-30 13:08:42','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-smiling-chiropractor-in-eyeglasses-and-SA2D6V6-slider.webp',0,'attachment','image/webp',0),(260,1,'2023-05-30 13:08:43','2023-05-30 13:08:43','','portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider','','inherit','open','closed','','portrait-of-male-doctor-with-stethoscope-wearing-w-s8ja2bf-slider','','','2023-05-30 13:08:43','2023-05-30 13:08:43','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-slider.webp',0,'attachment','image/webp',0),(261,1,'2023-05-30 13:08:44','2023-05-30 13:08:44','','doctor-at-hospital-R69SC2W','','inherit','open','closed','','doctor-at-hospital-r69sc2w','','','2023-05-30 13:08:44','2023-05-30 13:08:44','',0,'https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/doctor-at-hospital-R69SC2W.webp',0,'attachment','image/webp',0),(262,1,'2023-05-30 13:10:47','2023-05-30 13:10:47','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:10:47','2023-05-30 13:10:47','',206,'https://testhospital.in8.cdn-alpha.com/?p=262',0,'revision','',0),(263,1,'2023-05-30 13:10:48','2023-05-30 13:10:48','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:10:48','2023-05-30 13:10:48','',206,'https://testhospital.in8.cdn-alpha.com/?p=263',0,'revision','',0),(264,1,'2023-05-30 13:10:50','2023-05-30 13:10:50','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h1>Exceptional Care Every Patient Every Day</h1>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:10:50','2023-05-30 13:10:50','',206,'https://testhospital.in8.cdn-alpha.com/?p=264',0,'revision','',0),(265,1,'2023-05-30 13:11:23','2023-05-30 13:11:23','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h1>Exceptional Care Every Patient Every Day</h1>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:11:23','2023-05-30 13:11:23','',206,'https://testhospital.in8.cdn-alpha.com/?p=265',0,'revision','',0),(266,1,'2023-05-30 13:11:24','2023-05-30 13:11:24','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h1>Exceptional Care Every Patient Every Day</h1>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:11:24','2023-05-30 13:11:24','',206,'https://testhospital.in8.cdn-alpha.com/?p=266',0,'revision','',0),(267,1,'2023-05-30 13:11:25','2023-05-30 13:11:25','<style>/*! elementor - v3.13.3 - 28-05-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>													<a href=\"#\">\n							<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />								</a>\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-235\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/\">Home</a></li>\n<li id=\"menu-item-236\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=225\">About Us</a></li>\n<li id=\"menu-item-240\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=227\">Specialities</a></li>\n<li id=\"menu-item-239\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=229\">Facilities</a></li>\n<li id=\"menu-item-237\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=231\">Career</a></li>\n<li id=\"menu-item-238\" data-vertical-menu=750px><a href=\"https://testhospital.in8.cdn-alpha.com/?page_id=233\">Contact Us</a></li>\n</ul>\n					<a href=\"https://testhospital.in8.cdn-alpha.com\" target=\"_self\" rel=\"noopener\">\n						<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />\n					</a> \n				<button type=\"button\">X</button>		\n																<a href=\"#\">\n							<img width=\"1200\" height=\"1200\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1.png 1200w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-300x300.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-1024x1024.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-150x150.png 150w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/50-years-copy-1-768x768.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />								</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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>Exceptional Care Every Patient Every Day</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit praesent fringilla quam lacus, posuere elementum mi ultrices ac. Mauris faucibus a lectus id faucibus. Praesent vel magna turpis.</p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			<style>/*! elementor - v3.13.3 - 28-05-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			<h1>Exceptional Care Every Patient Every Day</h1>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-1.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Select Expert Doctor</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-2.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Consultation</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n			<a href=\"#\" role=\"button\">\n						Know More\n					</a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"94\" height=\"90\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-3.png\" alt=\"\" loading=\"lazy\" />                \n                </a>\n			<h6>Get Cure & Relief</h6>		\n		<p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>		\n															<img width=\"183\" height=\"183\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1.png 183w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-1-150x150.png 150w\" sizes=\"(max-width: 183px) 100vw, 183px\" />															\n		<p>3</p>		\n															<img width=\"270\" height=\"497\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/round-building-CGY4TZ5-163x300.jpg 163w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"270\" height=\"400\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62.jpg 270w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-725FA62-203x300.jpg 203w\" sizes=\"(max-width: 270px) 100vw, 270px\" />															\n															<img width=\"180\" height=\"181\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg.png 180w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/experience_bg-150x150.png 150w\" sizes=\"(max-width: 180px) 100vw, 180px\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>45+</h2>		\n			<h5>Years</h5>		\n			<h2>Welcome to Narinder Mohan Hospital</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Qualified Doctors                </h6>\n                        		  <p>45 years of experience</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Online Consultation                </h6>\n                        		  <p>Book online appointment</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    Instant Appointment                </h6>\n                        		  <p>With your specialist doctor</p>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h6>\n                    24 Hours Care Service                </h6>\n                        		  <p>With emergency care unit</p>\n                </a>\n															<img width=\"165\" height=\"49\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/sign.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Saanaya Singh</h6>		\n			<h6>- CEO</h6>		\n			<a href=\"#\" role=\"button\">\n						Learn More\n					</a>\n			<h2>Our Healthcare Services</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-1.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Kidney Transplant                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-2.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Pulmonology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-3.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Neurology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-4.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Blood Donation                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-5.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Dental Care                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"60\" height=\"60\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-simple-set-healthcare-and-medicine-line-icons-SYV3R5-6.png\" alt=\"\" loading=\"lazy\" />                \n                            <h6>\n                    Ophthalmology                </h6>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget sodales tellus molestie Class aptent taciti sociosqu ad litora </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Online Appointments &amp; Prescriptions</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"372\" height=\"297\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots.png 372w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/triangle-dots-300x240.png 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" />															\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-4.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Patients</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-5.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Ambulance</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-6.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Doctors</h2>								\n									 <img width=\"62\" height=\"62\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-7.png\" alt=\"\" loading=\"lazy\" />\n												0\n						+											\n					<h2>Total Beds</h2>								\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"1250\" height=\"841\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-300x202.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-1024x689.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/the-medical-team-standing-in-a-hospital-AVQYCPT-768x517.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>The Future of Healthcare</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada. Nunc gravida dui scelerisque libero venenatis hendrerit vestibulum euismod, lacus.</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-8.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Registration Process                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-9.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Patient Record Management                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-3.png\" alt=\"\" loading=\"lazy\" />															\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                    <img width=\"55\" height=\"55\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elements-medical-icon-line-styles-UTQXLZN-10.png\" alt=\"\" loading=\"lazy\" />                \n                            <h2>\n                    Managing Imaging &amp; Diagnostics                </h2>\n                        		  <p>Suspendisse gravida ex id nulla diet, eget tellus </p>\n                </a>\n															<img width=\"132\" height=\"132\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/circle-dots-2.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>Bringing Health To Life For The Whole Family</h2>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Blood Transfusion                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>1</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Medical Insurance                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>2</p>		\n			        <!-- link opening -->\n                <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                <!-- end link opening -->\n                            <h3>\n                    Health Checkup                </h3>\n                        		  <p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida </p>\n                </a>\n		<p>3</p>		\n			<a href=\"#\" role=\"button\">\n						Make Appointment\n					</a>\n															<img width=\"500\" height=\"589\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/women-doctors-standing-in-corridor-on-medical-conf-5JCX2RT-255x300.jpg 255w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Emergency? Call Us</h6>		\n			<h3>0120-2819416</h3>		\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n			<h3>See What Our Patients \nSay’s About Us</h3>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida malesuada nunc gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/business-woman-MCSQA8D.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Stella Ruth</strong>\n										Art Director\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/elegant-confident-man-doctor-dentist-wearing-lab-c-K94ZGCY.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Sawyer Ford</strong>\n										Web Designer\n															<p>Cras vestibulum arcu sit amet erat accumsan vehicula. Curabitur \naliquam sapien in posuere volutpat. Sed vinar elit sapien, non \naccumsan enim malesuada eu. </p>\n											<img width=\"73\" height=\"73\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/accountant-in-office-PHNC7LQ.jpg\" alt=\"\" loading=\"lazy\" />										\n										<strong>Jack Wyatt</strong>\n										Organizer\n	<ul aria-describedby=\"paginations\"></ul>\n															<img width=\"154\" height=\"155\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots.png 154w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/square-dots-150x150.png 150w\" sizes=\"(max-width: 154px) 100vw, 154px\" />															\n															<img width=\"1250\" height=\"852\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT.jpg 1250w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-300x204.jpg 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-1024x698.jpg 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/group-of-doctors-walking-in-corridor-on-medical-co-EA2DVJT-768x523.jpg 768w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" />															\n															<img width=\"1062\" height=\"356\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2.png 1062w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-300x101.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-1024x343.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-2-768x257.png 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" />															\n			<h2>Book An Appointment</h2>		\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"257\" height=\"134\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/rectangle-dots-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h2>A Professional & \nCare Provider</h2>		\n		<p>Etiam scelerisque nec elit ac efficitur. Duis vestibulum magna sit amet ante gravida</p>		\n			<a href=\"#\" role=\"button\">\n						See More\n					</a>\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-wearing-scrubs-standing-Q2QG548-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. KIMBERLY PEREZ</h6>		\n		<p>Nephrologists</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-female-doctor-with-stethoscope-wearing-AKGKFFQ-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. JOSIE BUCHANAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"500\" height=\"491\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF.jpg 500w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/portrait-of-male-doctor-with-stethoscope-wearing-w-S8JA2BF-300x295.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h6>Dr. ALBERT DUNCAN</h6>		\n		<p>Surgion Specialist</p>		\n															<img width=\"6081\" height=\"2229\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1.png 6081w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-300x110.png 300w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1024x375.png 1024w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-768x282.png 768w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-1536x563.png 1536w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/NMH-logo-5-02-1-1-2048x751.png 2048w\" sizes=\"(max-width: 6081px) 100vw, 6081px\" />															\n		<p>Lorem ipsum dolor sit amet, tetur adipiscing elit nulla</p>		\n						 <ul>\n														<li>\n					    <a\n						href=\"#\" aria-label=\"Twitter\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Facebook\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Google Plus\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Linked in\" >\n                                                                                                            </a>\n                    </li>\n                    														<li>\n					    <a\n						href=\"#\" aria-label=\"Instagram\" >\n                                                                                                            </a>\n                    </li>\n                    							</ul>\n															<img width=\"489\" height=\"473\" src=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2.png 489w, https://testhospital.in8.cdn-alpha.com/wp-content/uploads/2023/05/curve-dots-2-300x290.png 300w\" sizes=\"(max-width: 489px) 100vw, 489px\" />															\n			<h6>Contact Us</h6>		\n			<link rel=\"stylesheet\" href=\"https://testhospital.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Block B, Mohan Nagar, Ghaziabad, Uttar Pradesh 201007\n									</li>\n								<li>\n											<a href=\"#\">\n										info@nmh.net.in\n											</a>\n									</li>\n								<li>\n										0120-4130154\n									</li>\n						</ul>\n			<h6>Popular Services</h6>		\n					<ul>\n							<li>\n										Bipolar Disorders\n									</li>\n								<li>\n										Anxiety Therapy\n									</li>\n								<li>\n										Stress Management\n									</li>\n								<li>\n										Executive Coaching\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Working Hours\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Monday :\n									</li>\n								<li>\n										Tusday :\n									</li>\n								<li>\n										Wednesday :\n									</li>\n								<li>\n										Thursday :\n									</li>\n								<li>\n										Friday :\n									</li>\n								<li>\n										Saturday :\n									</li>\n								<li>\n										Sunday :\n									</li>\n						</ul>\n					<ul>\n							<li>\n										7am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 9pm\n									</li>\n								<li>\n										8am - 8pm\n									</li>\n								<li>\n										9am - 7pm\n									</li>\n								<li>\n										10am - 6pm\n									</li>\n								<li>\n										10am - 1pm\n									</li>\n						</ul>\n		<p>Copyright © 2021 Mediq All rights reserved</p>','Home','','inherit','closed','closed','','206-revision-v1','','','2023-05-30 13:11:25','2023-05-30 13:11:25','',206,'https://testhospital.in8.cdn-alpha.com/?p=267',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),(7,2,0),(12,3,0),(15,2,0),(17,2,0),(19,2,0),(24,4,0),(33,2,0),(38,2,0),(53,2,0),(84,4,0),(90,4,0),(95,4,0),(139,4,0),(142,4,0),(145,4,0),(148,4,0),(151,4,0),(154,4,0),(157,4,0),(158,4,0),(168,4,0),(169,4,0),(174,4,0),(175,4,0),(176,4,0),(183,4,0),(186,4,0),(235,5,0),(236,5,0),(237,5,0),(238,5,0),(239,5,0),(240,5,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=6 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,1),(3,3,'wp_theme','',0,1),(4,4,'elementor_library_type','',0,19),(5,5,'nav_menu','',0,6);
/*!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=6 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,'twentytwentythree','twentytwentythree',0),(4,'section','section',0),(5,'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=30 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:3:{s:64:\"27838a39ed06bad96537b452c2ffb580dd5eb01a6e68afd8524e226fe7309334\";a:4:{s:10:\"expiration\";i:1685606287;s:2:\"ip\";s:13:\"172.71.198.52\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1685433487;}s:64:\"458c89ea76b66cd13de1189833a693f219370c064e587aed2741ac37ced9138c\";a:4:{s:10:\"expiration\";i:1685624488;s:2:\"ip\";s:13:\"172.71.198.49\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1685451688;}s:64:\"7c653cffe11fea8192e2ccb8c8c63b6bb6fdcc1c5e43ea76e5e845040ee02449\";a:4:{s:10:\"expiration\";i:1685771384;s:2:\"ip\";s:13:\"172.70.219.50\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1685598584;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"172.71.198.0\";}'),(19,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-05-29T09:08:31.657Z\";}'),(20,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;}'),(21,1,'announcements_user_counter','1'),(22,1,'wp_elementor_connect_common_data','a:3:{s:9:\"client_id\";s:32:\"8Ydf6n6NfJDwEZGIW100L6GI5VP70wB1\";s:11:\"auth_secret\";s:32:\"9xD50Cju6HBLhPIwyGGTkNmgOl3KW8cJ\";s:5:\"state\";s:12:\"37FBWmFwKYfp\";}'),(23,1,'hfe-popup','dismissed'),(24,1,'header-footer-elementor-rating','delayed-notice'),(25,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(26,1,'wp_user-settings-time','1685436652'),(27,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\";}'),(28,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(29,1,'nav_menu_recently_edited','5');
/*!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$Br1TgD/ZabkUMkcz2K5bxSJWDmHnWy1','sitemanager','wp@dxpsites.com','https://testhospital.in8.cdn-alpha.com','2023-05-29 08:51:33','',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-24 21:04:21

Oncology-Tablets – Affy Pharma Pvt Ltd

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